1 package test.hello; 2 3 import hello.*; 4 import junit.framework.*; 5 6 public class HelloWorldTest extends TestCase { 7 8 public HelloWorldTest(String name) { 9 super(name); 10 } 11 12 public void testSayHello() { 13 HelloWorld hello = new HelloWorld(); 14 assertEquals("Hello world", hello.sayHello()); 15 } 16 17 public static void main(String [] args) { 18 junit.textui.TestRunner.run(HelloWorldTest.class); 19 } 20 21 } 22 | Popular Tags |