1
2
3
4
5
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
20
21 protected void setUp() throws Exception {
22 super.setUp();
23 }
24
25
26
27
28 protected void tearDown() throws Exception {
29 super.tearDown();
30 }
31
32 public void testShutdown() {
33
34 }
35
36 public void testSimpleTimerServiceImpl() {
37
38 }
39
40 public void testSetPersistStrategy() {
41
42 }
43
44 public void testGetSchedulerStartTime() {
45
46 }
47
48 public void testSchedule() {
49
50 }
51
52 public void testCancelAll() {
53
54 }
55
56 public void testGetRunningTasks() {
57
58 }
59
60 public void testFindTaskByID() {
61
62 }
63
64 public void testCleanup() {
65
66 }
67
68 public void testPersist() {
69
70 }
71
72 }