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 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 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 testComponentSave_WithPendingPersonApprove_Nav() throws Exception { 103 testComponentSave_WithPendingPersonApprove(); 104 } 105 106 @Test 107 public void testComponentCancel_WithPendingPersonApprove_Nav() throws Exception { 108 testComponentCancel_WithPendingPersonApprove(); 109 } 110 111 @Test 112 public void testComponentRecallAndCancel_WithPendingPersonApprove_Nav() throws Exception { 113 testComponentRecallAndCancel_WithPendingPersonApprove(); 114 } 115 116 @Test 117 public void testComponentRecallToActionList_WithPendingPersonApprove_Nav() throws Exception { 118 testComponentRecallToActionList_WithPendingPersonApprove(); 119 } 120 121 @Test 122 public void testComponentSubmit_WithPendingPersonApprove_Nav() throws Exception { 123 testComponentSubmit_WithPendingPersonApprove(); 124 } 125 126 @Test 127 public void testComponentSubmit_WithPendingPersonAcknowledge_Nav() throws Exception { 128 testComponentSubmit_WithPendingPersonAcknowledge(); 129 } 130 131 @Test 132 public void testComponentSubmit_WithPendingPersonFyi_Nav() throws Exception { 133 testComponentSubmit_WithPendingPersonFyi(); 134 } 135} 136