1 package org.sonar.tests.rulesOnTests;
3 import junit.framework.TestCase;
5 public class HelloTest extends TestCase {
7 public void testHello() {
8 Hello instance = new Hello();
9 assertEquals("hello", instance.hello());
12 public void testToto() throws Exception {
13 Hello instance = new Hello();