]> source.dussan.org Git - sonarqube.git/blob
b81729b6633a827a0678b3e83a2f656b81abe740
[sonarqube.git] /
1 package ch.hortis.sonar.samples.testFailures.moduleA;
2
3 public class FailTest extends junit.framework.TestCase {
4         
5         public void testAWithFailure() {
6           assertEquals(true, false);
7         }
8         
9         public void testAWithError() {
10           if (true) throw new RuntimeException("Error test");
11         }
12
13   public void shouldNotFail() {
14     fail();
15   }
16   
17   public void testWithSucces() throws InterruptedException {
18     Thread.sleep(5);
19     assertTrue(true);
20   } 
21 }