Hierarchy of JUnit tests
问题 I need the following test @runwith(cache, memory) class CollectionA is -- this is a suite (aka folder) class Cache { -- this is a sub-suite (aka folder) @test testCache1() -- this is a method (aka file) @test testCache2() @test testCache3() } class RAM { -- this is a sub-suite (aka folder) @test testRAM1() @test testRAM2() } @test testIO() @test testKeyboard() @test testMouse() @test testMonitor() @test testPower() @test testBoot() Please note that only Cache and RAM need to be grouped. The