View Javadoc
1   /**
2    * Copyright 2005-2014 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 ConfigComponentActionListNavAft extends ConfigComponentActionListAftBase {
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 testActionListDisapproveGroupNav() throws Exception {
57          testActionListDisapproveGroup();
58      }
59  
60      @Test
61      public void testActionListDisapprovePersonNav() throws Exception {
62          testActionListDisapprovePerson();
63      }
64  
65      @Test
66      public void testActionListFyiGroupNav() throws Exception {
67          testActionListFyiGroup();
68      }
69  
70      @Test
71      public void testActionListFyiPersonNav() throws Exception {
72          testActionListFyiPerson();
73      }
74  }