Files
oop/assignment4/Question2/StartGrading.java
2022-04-24 11:06:08 +08:00

18 lines
474 B
Java

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();
}
}