View Javadoc
1   /**
2    * Copyright 2005-2015 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.Test;
19  
20  /**
21   * @author Kuali Rice Team (rice.collab@kuali.org)
22   */
23  public class CampusActionListBkMrkAft extends CampusActionListAftBase {
24  
25      @Override
26      public String getBookmarkUrl() {
27          return BOOKMARK_URL;
28      }
29  
30      @Test
31      public void testActionListAcknowledgeGroupBookmark() throws Exception {
32          testActionListAcknowledgeGroup();
33      }
34  
35      @Test
36      public void testActionListAcknowledgePersonBookmark() throws Exception {
37          testActionListAcknowledgePerson();
38      }
39  
40      @Test
41      public void testActionListApproveGroupBookmark() throws Exception {
42          testActionListApproveGroup();
43      }
44  
45      @Test
46      public void testActionListApprovePersonBookmark() throws Exception {
47          testActionListApprovePerson();
48      }
49  
50      @Test
51      public void testActionListCompleteGroupBookmark() throws Exception {
52          testActionListCompleteGroup();
53      }
54  
55      @Test
56      public void testActionListCompletePersonBookmark() throws Exception {
57          testActionListCompletePerson();
58      }
59  
60      @Test
61      public void  testActionListCompletePerson_WithPendingAcknowledge_Bookmark() throws Exception {
62          testActionListCompletePerson_WithPendingAcknowledge();
63      }
64  
65      @Test
66      public void testActionListDisapproveGroupBookmark() throws Exception {
67          testActionListDisapproveGroup();
68      }
69  
70      @Test
71      public void testActionListDisapprovePersonBookmark() throws Exception {
72          testActionListDisapprovePerson();
73      }
74  
75      @Test
76      public void testActionListFyiGroupBookmark() throws Exception {
77          testActionListFyiGroup();
78      }
79  
80      @Test
81      public void testActionListFyiPersonBookmark() throws Exception {
82          testActionListFyiPerson();
83      }
84  
85      @Test
86      public void testActionListAcknowledgePerson_WithPendingApprove_Bookmark() throws Exception {
87          testActionListAcknowledgePerson_WithPendingApprove();
88      }
89  
90      @Test
91      public void testActionListAcknowledgePerson_WithPendingAcknowledge_Bookmark() throws Exception {
92          testActionListAcknowledgePerson_WithPendingAcknowledge();
93      }
94  
95      @Test
96      public void testActionListApprovePerson_WithPendingApprove_Bookmark() throws Exception {
97          testActionListApprovePerson_WithPendingApprove();
98      }
99  
100     @Test
101     public void testActionListApprovePerson_WithPendingAcknowledge_Bookmark() throws Exception {
102         testActionListApprovePerson_WithPendingAcknowledge();
103     }
104 
105 
106     @Test
107     public void testCampusActionListSave_WithPendingPersonApprove_Bookmark() throws Exception {
108         testCampusActionListSave_WithPendingPersonApprove();
109     }
110 
111     @Test
112     public void testCampusActionListCancel_WithPendingPersonApprove_Bookmark() throws Exception {
113         testCampusActionListCancel_WithPendingPersonApprove();
114     }
115 
116     @Test
117     public void testCampusActionListRecallAndCancel_WithPendingPersonApprove_Bookmark() throws Exception {
118         testCampusActionListRecallAndCancel_WithPendingPersonApprove();
119     }
120 
121     @Test
122     public void testCampusActionListRecallToActionList_WithPendingPersonApprove_Bookmark() throws Exception {
123         testCampusActionListRecallToActionList_WithPendingPersonApprove();
124     }
125 
126     @Test
127     public void testCampusActionListSubmit_WithPendingPersonApprove_Bookmark() throws Exception {
128         testCampusActionListSubmit_WithPendingPersonApprove();
129     }
130 
131     @Test
132     public void testCampusActionListSubmit_WithPendingPersonAcknowledge_Bookmark() throws Exception {
133         testCampusActionListSubmit_WithPendingPersonAcknowledge();
134     }
135 
136     @Test
137     public void testCampusActionListSubmit_WithPendingPersonFyi_Bookmark() throws Exception {
138         testCampusActionListSubmit_WithPendingPersonFyi();
139     }
140 }