]> source.dussan.org Git - sonarqube.git/blob
f268c714b461e872bd930b1cab423a91a581778d
[sonarqube.git] /
1 package org.sonar.tests;
2
3 import static org.junit.Assert.assertEquals;
4 import static org.junit.Assert.fail;
5 import org.junit.Test;
6
7
8 public class HelloTest {
9
10   @Test
11   public void shouldSayHello() {
12     assertEquals("hi", new Hello("hi").say());
13   }
14   
15   @Test
16   public void shouldNotFail() {
17     assertEquals(true, true);
18   }
19 }