KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > ubik > rmi > examples > time > TimeServiceImplTest


1 package org.sapia.ubik.rmi.examples.time;
2
3 import junit.framework.TestCase;
4
5
6 /**
7  * @
8  */

9 public class TimeServiceImplTest extends TestCase {
10   public TimeServiceImplTest(String JavaDoc aName) {
11     super(aName);
12   }
13
14   public void testService() throws Exception JavaDoc {
15     System.out.println(new TimeServiceImpl().getTime());
16   }
17 }
18
Popular Tags