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.Ignore;
19 import org.junit.Test;
20
21
22
23
24 public class ResponsibilityActionListBkMrkAft extends ResponsibilityActionListAftBase {
25
26 @Override
27 public String getBookmarkUrl() {
28 return BOOKMARK_URL;
29 }
30
31 @Test
32 public void testActionListAcknowledgeGroupBookmark() throws Exception {
33 testActionListAcknowledgeGroup();
34 }
35
36 @Test
37 public void testActionListAcknowledgePersonBookmark() throws Exception {
38 testActionListAcknowledgePerson();
39 }
40
41 @Test
42 public void testActionListApproveGroupBookmark() throws Exception {
43 testActionListApproveGroup();
44 }
45
46 @Test
47 public void testActionListApprovePersonBookmark() throws Exception {
48 testActionListApprovePerson();
49 }
50
51 @Test
52 public void testActionListCompleteGroupBookmark() throws Exception {
53 testActionListCompleteGroup();
54 }
55
56 @Test
57 public void testActionListCompletePersonBookmark() throws Exception {
58 testActionListCompletePerson();
59 }
60
61 @Test
62 public void testActionListCompletePerson_WithPendingAcknowledge_Bookmark() throws Exception {
63 testActionListCompletePerson_WithPendingAcknowledge();
64 }
65
66 @Test
67 public void testActionListDisapproveGroupBookmark() throws Exception {
68 testActionListDisapproveGroup();
69 }
70
71 @Test
72 public void testActionListDisapprovePersonBookmark() throws Exception {
73 testActionListDisapprovePerson();
74 }
75
76 @Test
77 public void testActionListFyiGroupBookmark() throws Exception {
78 testActionListFyiGroup();
79 }
80
81 @Test
82 public void testActionListFyiPersonBookmark() throws Exception {
83 testActionListFyiPerson();
84 }
85
86 @Test
87 public void testActionListAcknowledgePerson_WithPendingApprove_Bookmark() throws Exception {
88 testActionListAcknowledgePerson_WithPendingApprove();
89 }
90
91 @Test
92 public void testActionListAcknowledgePerson_WithPendingAcknowledge_Bookmark() throws Exception {
93 testActionListAcknowledgePerson_WithPendingAcknowledge();
94 }
95
96 @Test
97 public void testActionListApprovePerson_WithPendingApprove_Bookmark() throws Exception {
98 testActionListApprovePerson_WithPendingApprove();
99 }
100
101 @Test
102 public void testActionListApprovePerson_WithPendingAcknowledge_Bookmark() throws Exception {
103 testActionListApprovePerson_WithPendingAcknowledge();
104 }
105
106
107 @Test
108 public void testResponsibilityActionListSave_WithPendingPersonApprove_Bookmark() throws Exception {
109 testResponsibilityActionListSave_WithPendingPersonApprove();
110 }
111
112 @Test
113 public void testResponsibilityActionListCancel_WithPendingPersonApprove_Bookmark() throws Exception {
114 testResponsibilityActionListCancel_WithPendingPersonApprove();
115 }
116
117 @Test
118 @Ignore("Responsibility recall not implemented on screen")
119 public void testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove_Bookmark() throws Exception {
120 testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove();
121 }
122
123 @Test
124 @Ignore("Responsibility recall not implemented on screen")
125 public void testResponsibilityActionListRecallToActionList_WithPendingPersonApprove_Bookmark() throws Exception {
126 testResponsibilityActionListRecallToActionList_WithPendingPersonApprove();
127 }
128
129 @Test
130 public void testResponsibilityActionListSubmit_WithPendingPersonApprove_Bookmark() throws Exception {
131 testResponsibilityActionListSubmit_WithPendingPersonApprove();
132 }
133
134 @Test
135 public void testResponsibilityActionListSubmit_WithPendingPersonAcknowledge_Bookmark() throws Exception {
136 testResponsibilityActionListSubmit_WithPendingPersonAcknowledge();
137 }
138
139 @Test
140 public void testResponsibilityActionListSubmit_WithPendingPersonFyi_Bookmark() throws Exception {
141 testResponsibilityActionListSubmit_WithPendingPersonFyi();
142 }
143 }