Hello, when I declare a suite with this, classes are randomly executed: ``` @RunWith(WildcardPatternSuite.class) @Suite.SuiteClasses({FirstTest.class, AnotherTest.class}) @SuiteClasses("?*/**/*Test.class") ``` Maybe using LinkedHashSet would resolve this?
Hello,
when I declare a suite with this, classes are randomly executed:
Maybe using LinkedHashSet would resolve this?