1 package ch.hortis.sonar.samples.testFailures.moduleA;
3 public class FailTest extends junit.framework.TestCase {
5 public void testAWithFailure() {
6 assertEquals(true, false);
9 public void testAWithError() {
10 if (true) throw new RuntimeException("Error test");
13 public void shouldNotFail() {
17 public void testWithSucces() throws InterruptedException {