1 package org.sonar.tests;
3 import static org.junit.Assert.assertEquals;
4 import static org.junit.Assert.fail;
8 public class HelloTest {
11 public void shouldSayHello() {
12 assertEquals("hi", new Hello("hi").say());
16 public void shouldNotFail() {
17 assertEquals(true, true);