01: import java.util.Date;
02: 
03: /**
04:    This program tests the greeting thread by running two
05:    threads in parallel.
06: */
07: public class GreetingThreadTest
08: {
09:    public static void main(String[] args)
10:    {
11:       GreetingThread t1 = new GreetingThread("Hello, World!");
12:       GreetingThread t2 = new GreetingThread("Goodbye, World!");
13: 
14:       t1.start();
15:       t2.start();
16:    }
17: }
18: