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