Are test suites considered deprecated in JUnit5?
问题 I am trying to create test suites with JUnit5. After some research I was not able to conclude whether it is a supported feature or not. The official user guide only mentions suites with regard to backwards compatibility to JUnit 4. This is how it was done back in JUnit 4: @RunWith(Suite.class) @SuiteClasses({Test1.class, Test2.class}) public class TestSuite { } Does this mean, that Test Suites are considered deprecated now, or is the same concept still available under another name? 回答1: Does