01: package test.hello;
02:
03: import hello.*;
04: import junit.framework.*;
05:
06: public class HelloWorldTest extends TestCase {
07:
08: public HelloWorldTest(String name) {
09: 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: }
|