You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
543 B

/**
* 主测试类
* 运行所有测试用例
*/
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);
}
}