15 lines
307 B
Java
15 lines
307 B
Java
/**
|
|
* Answer to the questions.
|
|
*
|
|
* - Q: What kinds of tests can you write inside the testCourse method?
|
|
*
|
|
* - A: You can inherit the Couse class to annonymous class and override the
|
|
* isRequired() method.
|
|
*/
|
|
|
|
public class Start {
|
|
public static void main(String[] args) {
|
|
Course.testCourse();
|
|
}
|
|
}
|