]> source.dussan.org Git - sonarqube.git/blob
4e0562ee7affc7359c831d4e155c264a2bed32af
[sonarqube.git] /
1 package org.sonar.samples;
2
3 import junit.framework.TestCase;
4
5 public class ClassUnderTestTest extends TestCase {
6   
7   public void testHello() {
8     ClassUnderTest instance = new ClassUnderTest();
9     assertEquals("hello", instance.hello());
10   }
11
12   public void testToto() throws Exception {
13     ClassUnderTest instance = new ClassUnderTest();
14     instance.toto();
15   }
16 }