1   /*
2    * Created on 2005-2-2
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package org.huihoo.jfox.soaf.services.timer;
8   
9   import junit.framework.TestCase;
10  
11  /***
12   * @author peter.cheng TODO To change the template for this generated type
13   *         comment go to Window - Preferences - Java - Code Style - Code
14   *         Templates
15   */
16  public class SimpleTimerServiceImplTest extends TestCase {
17  
18      /*
19       * @see TestCase#setUp()
20       */
21      protected void setUp() throws Exception {
22          super.setUp();
23      }
24  
25      /*
26       * @see TestCase#tearDown()
27       */
28      protected void tearDown() throws Exception {
29          super.tearDown();
30      }
31  
32      public void testShutdown() {
33          //TODO Implement shutdown().
34      }
35  
36      public void testSimpleTimerServiceImpl() {
37          //TODO Implement SimpleTimerServiceImpl().
38      }
39  
40      public void testSetPersistStrategy() {
41          //TODO Implement setPersistStrategy().
42      }
43  
44      public void testGetSchedulerStartTime() {
45          //TODO Implement getSchedulerStartTime().
46      }
47  
48      public void testSchedule() {
49          //TODO Implement schedule().
50      }
51  
52      public void testCancelAll() {
53          //TODO Implement cancelAll().
54      }
55  
56      public void testGetRunningTasks() {
57          //TODO Implement getRunningTasks().
58      }
59  
60      public void testFindTaskByID() {
61          //TODO Implement findTaskByID().
62      }
63  
64      public void testCleanup() {
65          //TODO Implement cleanup().
66      }
67  
68      public void testPersist() {
69          //TODO Implement persist().
70      }
71  
72  }