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 ConfigComponentActionListBkMrkAft extends ConfigComponentActionListAftBase {
024    
025        @Override
026        public String getBookmarkUrl() {
027            return BOOKMARK_URL;
028        }
029    
030        @Test
031        public void testActionListAcknowledgeGroupBookmark() throws Exception {
032            testActionListAcknowledgeGroup();
033        }
034    
035        @Test
036        public void testActionListAcknowledgePersonBookmark() throws Exception {
037            testActionListAcknowledgePerson();
038        }
039    
040        @Test
041        public void testActionListApproveGroupBookmark() throws Exception {
042            testActionListApproveGroup();
043        }
044    
045        @Test
046        public void testActionListApprovePersonBookmark() throws Exception {
047            testActionListApprovePerson();
048        }
049    
050        @Test
051        public void testActionListCompleteGroupBookmark() throws Exception {
052            testActionListCompleteGroup();
053        }
054    
055        @Test
056        public void testActionListCompletePersonBookmark() throws Exception {
057            testActionListCompletePerson();
058        }
059    
060        @Test
061        public void  testActionListCompletePerson_WithPendingAcknowledge_Bookmark() throws Exception {
062            testActionListCompletePerson_WithPendingAcknowledge();
063        }
064    
065        @Test
066        public void testActionListDisapproveGroupBookmark() throws Exception {
067            testActionListDisapproveGroup();
068        }
069    
070        @Test
071        public void testActionListDisapprovePersonBookmark() throws Exception {
072            testActionListDisapprovePerson();
073        }
074    
075        @Test
076        public void testActionListFyiGroupBookmark() throws Exception {
077            testActionListFyiGroup();
078        }
079    
080        @Test
081        public void testActionListFyiPersonBookmark() throws Exception {
082            testActionListFyiPerson();
083        }
084    
085        @Test
086        public void testActionListAcknowledgePerson_WithPendingApprove_Bookmark() throws Exception {
087            testActionListAcknowledgePerson_WithPendingApprove();
088        }
089    
090        @Test
091        public void testActionListAcknowledgePerson_WithPendingAcknowledge_Bookmark() throws Exception {
092            testActionListAcknowledgePerson_WithPendingAcknowledge();
093        }
094    
095        @Test
096        public void testActionListApprovePerson_WithPendingApprove_Bookmark() throws Exception {
097            testActionListApprovePerson_WithPendingApprove();
098        }
099    
100        @Test
101        public void testActionListApprovePerson_WithPendingAcknowledge_Bookmark() throws Exception {
102            testActionListApprovePerson_WithPendingAcknowledge();
103        }
104    
105    
106        @Test
107        public void testComponentSave_WithPendingPersonApprove_Bookmark() throws Exception {
108            testComponentSave_WithPendingPersonApprove();
109        }
110    
111        @Test
112        public void testComponentCancel_WithPendingPersonApprove_Bookmark() throws Exception {
113            testComponentCancel_WithPendingPersonApprove();
114        }
115    
116        @Test
117        public void testComponentRecallAndCancel_WithPendingPersonApprove_Bookmark() throws Exception {
118            testComponentRecallAndCancel_WithPendingPersonApprove();
119        }
120    
121        @Test
122        public void testComponentRecallToActionList_WithPendingPersonApprove_Bookmark() throws Exception {
123            testComponentRecallToActionList_WithPendingPersonApprove();
124        }
125    
126        @Test
127        public void testComponentSubmit_WithPendingPersonApprove_Bookmark() throws Exception {
128            testComponentSubmit_WithPendingPersonApprove();
129        }
130    
131        @Test
132        public void testComponentSubmit_WithPendingPersonAcknowledge_Bookmark() throws Exception {
133            testComponentSubmit_WithPendingPersonAcknowledge();
134        }
135    
136        @Test
137        public void testComponentSubmit_WithPendingPersonFyi_Bookmark() throws Exception {
138            testComponentSubmit_WithPendingPersonFyi();
139        }
140    }