27 lines
678 B
Java
27 lines
678 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 testMajorElective()
|
|
{
|
|
//Since we cannot create any MajorElective object,
|
|
//the testMajorElective method of the Course class must be empty.
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
testCourse();
|
|
testMajorElective();
|
|
testMajorRequired();
|
|
}
|
|
}
|