Add: a4 test cases

This commit is contained in:
2022-04-24 11:06:08 +08:00
parent 0ced996a6e
commit 4a4c378b87
6 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
public class StartGrading {
public static void testCourse()
{
// Since we cannot create any Course object,
//the testCourse method of the Course class must be empty.
}
public static void testMajorRequired()
{
//Since we cannot create any MajorRequired object,
//the testMajorRequired method of the Course class must be empty.
}
public static void main(String[] args)
{
testCourse();
testMajorRequired();
}
}