parent
3eaef9ec45
commit
e1cd93d245
@ -0,0 +1,20 @@
|
||||
/**
|
||||
* 主测试类
|
||||
* 运行所有测试用例
|
||||
*/
|
||||
public class MainTest {
|
||||
public static void main(String[] args) {
|
||||
System.out.println("===== 接口隔离原则综合测试 =====\n");
|
||||
|
||||
// 运行基础题测试
|
||||
BasicTest.main(args);
|
||||
System.out.println("\n" + "=".repeat(50) + "\n");
|
||||
|
||||
// 运行进阶题测试
|
||||
AdvancedTest.main(args);
|
||||
System.out.println("\n" + "=".repeat(50) + "\n");
|
||||
|
||||
// 运行挑战题测试
|
||||
ChallengeTest.main(args);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue