View Javadoc
1   /**
2    * Copyright 2005-2016 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.admin;
17  
18  import org.junit.Ignore;
19  import org.junit.Test;
20  
21  /**
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public class PermissionActionListBkMrkAft extends PermissionActionListAftBase {
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 testPermissionActionListSave_WithPendingPersonApprove_Bookmark() throws Exception {
109         testPermissionActionListSave_WithPendingPersonApprove();
110     }
111 
112     @Test
113     public void testPermissionActionListCancel_WithPendingPersonApprove_Bookmark() throws Exception {
114         testPermissionActionListCancel_WithPendingPersonApprove();
115     }
116 
117     @Test
118     @Ignore("Permission recall not implemented on screen")
119     public void testPermissionActionListRecallAndCancel_WithPendingPersonApprove_Bookmark() throws Exception {
120         testPermissionActionListRecallAndCancel_WithPendingPersonApprove();
121     }
122 
123     @Test
124     @Ignore("Permission recall not implemented on screen")
125     public void testPermissionActionListRecallToActionList_WithPendingPersonApprove_Bookmark() throws Exception {
126         testPermissionActionListRecallToActionList_WithPendingPersonApprove();
127     }
128 
129     @Test
130     public void testPermissionActionListSubmit_WithPendingPersonApprove_Bookmark() throws Exception {
131         testPermissionActionListSubmit_WithPendingPersonApprove();
132     }
133 
134     @Test
135     public void testPermissionActionListSubmit_WithPendingPersonAcknowledge_Bookmark() throws Exception {
136         testPermissionActionListSubmit_WithPendingPersonAcknowledge();
137     }
138 
139     @Test
140     public void testPermissionActionListSubmit_WithPendingPersonFyi_Bookmark() throws Exception {
141         testPermissionActionListSubmit_WithPendingPersonFyi();
142     }
143 }