001/** 002 * Copyright 2005-2015 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.Ignore; 019import org.junit.Test; 020 021/** 022 * @author Kuali Rice Team (rice.collab@kuali.org) 023 */ 024public class ResponsibilityActionListNavAft extends ResponsibilityActionListAftBase { 025 026 @Test 027 public void testActionListAcknowledgeGroupNav() throws Exception { 028 testActionListAcknowledgeGroup(); 029 } 030 031 @Test 032 public void testActionListAcknowledgePersonNav() throws Exception { 033 testActionListAcknowledgePerson(); 034 } 035 036 @Test 037 public void testActionListApproveGroupNav() throws Exception { 038 testActionListApproveGroup(); 039 } 040 041 @Test 042 public void testActionListApprovePersonNav() throws Exception { 043 testActionListApprovePerson(); 044 } 045 046 @Test 047 public void testActionListCompleteGroupNav() throws Exception { 048 testActionListCompleteGroup(); 049 } 050 051 @Test 052 public void testActionListCompletePersonNav() throws Exception { 053 testActionListCompletePerson(); 054 } 055 056 @Test 057 public void testActionListCompletePerson_WithPendingAcknowledge_Nav() throws Exception { 058 testActionListCompletePerson_WithPendingAcknowledge(); 059 } 060 061 @Test 062 public void testActionListDisapproveGroupNav() throws Exception { 063 testActionListDisapproveGroup(); 064 } 065 066 @Test 067 public void testActionListDisapprovePersonNav() throws Exception { 068 testActionListDisapprovePerson(); 069 } 070 071 @Test 072 public void testActionListFyiGroupNav() throws Exception { 073 testActionListFyiGroup(); 074 } 075 076 @Test 077 public void testActionListFyiPersonNav() throws Exception { 078 testActionListFyiPerson(); 079 } 080 081 @Test 082 public void testActionListAcknowledgePerson_WithPendingApprove_Nav() throws Exception { 083 testActionListAcknowledgePerson_WithPendingApprove(); 084 } 085 086 @Test 087 public void testActionListAcknowledgePerson_WithPendingAcknowledge_Nav() throws Exception { 088 testActionListAcknowledgePerson_WithPendingAcknowledge(); 089 } 090 091 @Test 092 public void testActionListApprovePerson_WithPendingApprove_Nav() throws Exception { 093 testActionListApprovePerson_WithPendingApprove(); 094 } 095 096 @Test 097 public void testActionListApprovePerson_WithPendingAcknowledge_Nav() throws Exception { 098 testActionListApprovePerson_WithPendingAcknowledge(); 099 } 100 101 102 @Test 103 public void testResponsibilityActionListSave_WithPendingPersonApprove_Nav() throws Exception { 104 testResponsibilityActionListSave_WithPendingPersonApprove(); 105 } 106 107 @Test 108 public void testResponsibilityActionListCancel_WithPendingPersonApprove_Nav() throws Exception { 109 testResponsibilityActionListCancel_WithPendingPersonApprove(); 110 } 111 112 @Test 113 @Ignore("Responsibility recall not implemented on screen") 114 public void testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove_Nav() throws Exception { 115 testResponsibilityActionListRecallAndCancel_WithPendingPersonApprove(); 116 } 117 118 @Test 119 @Ignore("Responsibility recall not implemented on screen") 120 public void testResponsibilityActionListRecallToActionList_WithPendingPersonApprove_Nav() throws Exception { 121 testResponsibilityActionListRecallToActionList_WithPendingPersonApprove(); 122 } 123 124 @Test 125 public void testResponsibilityActionListSubmit_WithPendingPersonApprove_Nav() throws Exception { 126 testResponsibilityActionListSubmit_WithPendingPersonApprove(); 127 } 128 129 @Test 130 public void testResponsibilityActionListSubmit_WithPendingPersonAcknowledge_Nav() throws Exception { 131 testResponsibilityActionListSubmit_WithPendingPersonAcknowledge(); 132 } 133 134 @Test 135 public void testResponsibilityActionListSubmit_WithPendingPersonFyi_Nav() throws Exception { 136 testResponsibilityActionListSubmit_WithPendingPersonFyi(); 137 } 138} 139