Hello, everyone!

I am faced with some problem. Test cases from base classe work incorrectly.
The easiest way to explain is example.

We have following classes:

class A {

@Test
public void testA() {

...

assertTrue(false);

...

}

}

@RunWith( JUnit4TestRunner.class )
class B extends A {

@Configuration
 public static Option[] configuration()
 {

...

 }

}

If we start testing of B class we will see that method testA() from class A
unexpectedly finished successfully. How I can fix such behaviour?

Thanks in advance.

-- 
Leonid
_______________________________________________
general mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/general

Reply via email to