001/**
002 * Copyright 2005-2016 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package edu.sampleu.admin;
017
018import org.junit.Test;
019
020/**
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 */
023public class PermissionActionListNavAft extends PermissionActionListAftBase {
024
025    @Test
026    public void testActionListAcknowledgeGroupNav() throws Exception {
027        testActionListAcknowledgeGroup();
028    }
029
030    @Test
031    public void testActionListAcknowledgePersonNav() throws Exception {
032        testActionListAcknowledgePerson();
033    }
034
035    @Test
036    public void testActionListApproveGroupNav() throws Exception {
037        testActionListApproveGroup();
038    }
039
040    @Test
041    public void testActionListApprovePersonNav() throws Exception {
042        testActionListApprovePerson();
043    }
044
045    @Test
046    public void testActionListCompleteGroupNav() throws Exception {
047        testActionListCompleteGroup();
048    }
049
050    @Test
051    public void testActionListCompletePersonNav() throws Exception {
052        testActionListCompletePerson();
053    }
054
055    @Test
056    public void  testActionListCompletePerson_WithPendingAcknowledge_Nav() throws Exception {
057        testActionListCompletePerson_WithPendingAcknowledge();
058    }
059
060    @Test
061    public void testActionListDisapproveGroupNav() throws Exception {
062        testActionListDisapproveGroup();
063    }
064
065    @Test
066    public void testActionListDisapprovePersonNav() throws Exception {
067        testActionListDisapprovePerson();
068    }
069
070    @Test
071    public void testActionListFyiGroupNav() throws Exception {
072        testActionListFyiGroup();
073    }
074
075    @Test
076    public void testActionListFyiPersonNav() throws Exception {
077        testActionListFyiPerson();
078    }
079
080    @Test
081    public void testActionListAcknowledgePerson_WithPendingApprove_Nav() throws Exception {
082        testActionListAcknowledgePerson_WithPendingApprove();
083    }
084
085    @Test
086    public void testActionListAcknowledgePerson_WithPendingAcknowledge_Nav() throws Exception {
087        testActionListAcknowledgePerson_WithPendingAcknowledge();
088    }
089
090    @Test
091    public void testActionListApprovePerson_WithPendingApprove_Nav() throws Exception {
092        testActionListApprovePerson_WithPendingApprove();
093    }
094
095    @Test
096    public void testActionListApprovePerson_WithPendingAcknowledge_Nav() throws Exception {
097        testActionListApprovePerson_WithPendingAcknowledge();
098    }
099
100
101    @Test
102    public void testPermissionActionListSave_WithPendingPersonApprove_Nav() throws Exception {
103        testPermissionActionListSave_WithPendingPersonApprove();
104    }
105
106    @Test
107    public void testPermissionActionListCancel_WithPendingPersonApprove_Nav() throws Exception {
108        testPermissionActionListCancel_WithPendingPersonApprove();
109    }
110
111    @Test
112    public void testPermissionActionListRecallAndCancel_WithPendingPersonApprove_Nav() throws Exception {
113        testPermissionActionListRecallAndCancel_WithPendingPersonApprove();
114    }
115
116    @Test
117    public void testPermissionActionListRecallToActionList_WithPendingPersonApprove_Nav() throws Exception {
118        testPermissionActionListRecallToActionList_WithPendingPersonApprove();
119    }
120
121    @Test
122    public void testPermissionActionListSubmit_WithPendingPersonApprove_Nav() throws Exception {
123        testPermissionActionListSubmit_WithPendingPersonApprove();
124    }
125
126    @Test
127    public void testPermissionActionListSubmit_WithPendingPersonAcknowledge_Nav() throws Exception {
128        testPermissionActionListSubmit_WithPendingPersonAcknowledge();
129    }
130
131    @Test
132    public void testPermissionActionListSubmit_WithPendingPersonFyi_Nav() throws Exception {
133        testPermissionActionListSubmit_WithPendingPersonFyi();
134    }
135}
136