1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.admin;
17
18 import org.junit.Test;
19
20
21
22
23 public class CampusActionListNavAft extends CampusActionListAftBase {
24
25 @Test
26 public void testActionListAcknowledgeGroupNav() throws Exception {
27 testActionListAcknowledgeGroup();
28 }
29
30 @Test
31 public void testActionListAcknowledgePersonNav() throws Exception {
32 testActionListAcknowledgePerson();
33 }
34
35 @Test
36 public void testActionListApproveGroupNav() throws Exception {
37 testActionListApproveGroup();
38 }
39
40 @Test
41 public void testActionListApprovePersonNav() throws Exception {
42 testActionListApprovePerson();
43 }
44
45 @Test
46 public void testActionListCompleteGroupNav() throws Exception {
47 testActionListCompleteGroup();
48 }
49
50 @Test
51 public void testActionListCompletePersonNav() throws Exception {
52 testActionListCompletePerson();
53 }
54
55 @Test
56 public void testActionListCompletePerson_WithPendingAcknowledge_Nav() throws Exception {
57 testActionListCompletePerson_WithPendingAcknowledge();
58 }
59
60 @Test
61 public void testActionListDisapproveGroupNav() throws Exception {
62 testActionListDisapproveGroup();
63 }
64
65 @Test
66 public void testActionListDisapprovePersonNav() throws Exception {
67 testActionListDisapprovePerson();
68 }
69
70 @Test
71 public void testActionListFyiGroupNav() throws Exception {
72 testActionListFyiGroup();
73 }
74
75 @Test
76 public void testActionListFyiPersonNav() throws Exception {
77 testActionListFyiPerson();
78 }
79
80 @Test
81 public void testActionListAcknowledgePerson_WithPendingApprove_Nav() throws Exception {
82 testActionListAcknowledgePerson_WithPendingApprove();
83 }
84
85 @Test
86 public void testActionListAcknowledgePerson_WithPendingAcknowledge_Nav() throws Exception {
87 testActionListAcknowledgePerson_WithPendingAcknowledge();
88 }
89
90 @Test
91 public void testActionListApprovePerson_WithPendingApprove_Nav() throws Exception {
92 testActionListApprovePerson_WithPendingApprove();
93 }
94
95 @Test
96 public void testActionListApprovePerson_WithPendingAcknowledge_Nav() throws Exception {
97 testActionListApprovePerson_WithPendingAcknowledge();
98 }
99
100
101 @Test
102 public void testCampusActionListSave_WithPendingPersonApprove_Nav() throws Exception {
103 testCampusActionListSave_WithPendingPersonApprove();
104 }
105
106 @Test
107 public void testCampusActionListCancel_WithPendingPersonApprove_Nav() throws Exception {
108 testCampusActionListCancel_WithPendingPersonApprove();
109 }
110
111 @Test
112 public void testCampusActionListRecallAndCancel_WithPendingPersonApprove_Nav() throws Exception {
113 testCampusActionListRecallAndCancel_WithPendingPersonApprove();
114 }
115
116 @Test
117 public void testCampusActionListRecallToActionList_WithPendingPersonApprove_Nav() throws Exception {
118 testCampusActionListRecallToActionList_WithPendingPersonApprove();
119 }
120
121 @Test
122 public void testCampusActionListSubmit_WithPendingPersonApprove_Nav() throws Exception {
123 testCampusActionListSubmit_WithPendingPersonApprove();
124 }
125
126 @Test
127 public void testCampusActionListSubmit_WithPendingPersonAcknowledge_Nav() throws Exception {
128 testCampusActionListSubmit_WithPendingPersonAcknowledge();
129 }
130
131 @Test
132 public void testCampusActionListSubmit_WithPendingPersonFyi_Nav() throws Exception {
133 testCampusActionListSubmit_WithPendingPersonFyi();
134 }
135 }
136