This commit is contained in:
2022-04-21 15:43:38 +08:00
parent 8bb5c66d2c
commit 941b3d26d4
27 changed files with 1525 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/**
* 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();
}
}