hey, it seems to me that the ParallelRunner is having some issue with assumeTrue / assumeThat
i tryed something like
public class MyTest {
@Test
public void checkSomeThing() {
assumeTrue(false);
System.out.println("hello");
}
}
if i run this test with ParallelRunner test is green and "hello" is printet to console. Without ParallelRunner test will be skipped as expected.
greetings
Chris
hey, it seems to me that the ParallelRunner is having some issue with assumeTrue / assumeThat
i tryed something like