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.Ignore;
19  import org.junit.Test;
20  
21  /**
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public class ResponsibilityActionListNavAft extends ResponsibilityActionListAftBase {
25  
26      @Test
27      public void testActionListAcknowledgeGroupNav() throws Exception {
28          testActionListAcknowledgeGroup();
29      }
30  
31      @Test
32      public void testActionListAcknowledgePersonNav() throws Exception {
33          testActionListAcknowledgePerson();
34      }
35  
36      @Test
37      public void testActionListApproveGroupNav() throws Exception {
38          testActionListApproveGroup();
39      }
40  
41      @Test
42      public void testActionListApprovePersonNav() throws Exception {
43          testActionListApprovePerson();
44      }
45  
46      @Test
47      public void testActionListCompleteGroupNav() throws Exception {
48          testActionListCompleteGroup();
49      }
50  
51      @Test
52      public void testActionListCompletePersonNav() throws Exception {
53          testActionListCompletePerson();
54      }
55  
56      @Test
57      public void  testActionListCompletePerson_WithPendingAcknowledge_Nav() throws Exception {
58          testActionListCompletePerson_WithPendingAcknowledge();
59      }
60  
61      @Test
62      public void testActionListDisapproveGroupNav() throws Exception {
63          testActionListDisapproveGroup();
64      }
65  
66      @Test
67      public void testActionListDisapprovePersonNav() throws Exception {
68          testActionListDisapprovePerson();
69      }
70  
71      @Test
72      public void testActionListFyiGroupNav() throws Exception {
73          testActionListFyiGroup();
74      }
75  
76      @Test
77      public void testActionListFyiPersonNav() throws Exception {
78          testActionListFyiPerson();
79      }
80  
81      @Test
82      public void testActionListAcknowledgePerson_WithPendingApprove_Nav() throws Exception {
83          testActionListAcknowledgePerson_WithPendingApprove();
84      }
85  
86      @Test
87      public void testActionListAcknowledgePerson_WithPendingAcknowledge_Nav() throws Exception {
88          testActionListAcknowledgePerson_WithPendingAcknowledge();
89      }
90  
91      @Test
92      public void testActionListApprovePerson_WithPendingApprove_Nav() throws Exception {
93          testActionListApprovePerson_WithPendingApprove();
94      }
95  
96      @Test
97      public void testActionListApprovePerson_WithPendingAcknowledge_Nav() throws Exception {
98          testActionListApprovePerson_WithPendingAcknowledge();
99      }
100 
101 
102     @Test
103     public void testResponsibilityActionListSave_WithPendingPersonApprove_Nav() throws Exception {
104         testResponsibilityActionListSave_WithPendingPersonApprove();
105     }
106 
107     @Test
108     public void testResponsibilityActionListCancel_WithPendingPersonApprove_Nav() throws Exception {
109         testResponsibilityActionListCancel_WithPendingPersonApprove();
110     }
111 
112     @Test
113     @Ignore("Responsibility recall not implemented on screen")
114     public void testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove_Nav() throws Exception {
115         testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove();
116     }
117 
118     @Test
119     @Ignore("Responsibility recall not implemented on screen")
120     public void testResponsibilityActionListRecallToActionList_WithPendingPersonApprove_Nav() throws Exception {
121         testResponsibilityActionListRecallToActionList_WithPendingPersonApprove();
122     }
123 
124     @Test
125     public void testResponsibilityActionListSubmit_WithPendingPersonApprove_Nav() throws Exception {
126         testResponsibilityActionListSubmit_WithPendingPersonApprove();
127     }
128 
129     @Test
130     public void testResponsibilityActionListSubmit_WithPendingPersonAcknowledge_Nav() throws Exception {
131         testResponsibilityActionListSubmit_WithPendingPersonAcknowledge();
132     }
133 
134     @Test
135     public void testResponsibilityActionListSubmit_WithPendingPersonFyi_Nav() throws Exception {
136         testResponsibilityActionListSubmit_WithPendingPersonFyi();
137     }
138 }
139