001    /**
002     * Copyright 2005-2014 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     */
016    package edu.sampleu.admin;
017    
018    import org.junit.Test;
019    
020    /**
021     * @author Kuali Rice Team (rice.collab@kuali.org)
022     */
023    public class ConfigComponentActionListNavAft extends ConfigComponentActionListAftBase {
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 testActionListDisapproveGroupNav() throws Exception {
057            testActionListDisapproveGroup();
058        }
059    
060        @Test
061        public void testActionListDisapprovePersonNav() throws Exception {
062            testActionListDisapprovePerson();
063        }
064    
065        @Test
066        public void testActionListFyiGroupNav() throws Exception {
067            testActionListFyiGroup();
068        }
069    
070        @Test
071        public void testActionListFyiPersonNav() throws Exception {
072            testActionListFyiPerson();
073        }
074    }