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.Ignore; 019import org.junit.Test; 020 021/** 022 * @author Kuali Rice Team (rice.collab@kuali.org) 023 */ 024public class PermissionActionListBkMrkAft extends PermissionActionListAftBase { 025 026 @Override 027 public String getBookmarkUrl() { 028 return BOOKMARK_URL; 029 } 030 031 @Test 032 public void testActionListAcknowledgeGroupBookmark() throws Exception { 033 testActionListAcknowledgeGroup(); 034 } 035 036 @Test 037 public void testActionListAcknowledgePersonBookmark() throws Exception { 038 testActionListAcknowledgePerson(); 039 } 040 041 @Test 042 public void testActionListApproveGroupBookmark() throws Exception { 043 testActionListApproveGroup(); 044 } 045 046 @Test 047 public void testActionListApprovePersonBookmark() throws Exception { 048 testActionListApprovePerson(); 049 } 050 051 @Test 052 public void testActionListCompleteGroupBookmark() throws Exception { 053 testActionListCompleteGroup(); 054 } 055 056 @Test 057 public void testActionListCompletePersonBookmark() throws Exception { 058 testActionListCompletePerson(); 059 } 060 061 @Test 062 public void testActionListCompletePerson_WithPendingAcknowledge_Bookmark() throws Exception { 063 testActionListCompletePerson_WithPendingAcknowledge(); 064 } 065 066 @Test 067 public void testActionListDisapproveGroupBookmark() throws Exception { 068 testActionListDisapproveGroup(); 069 } 070 071 @Test 072 public void testActionListDisapprovePersonBookmark() throws Exception { 073 testActionListDisapprovePerson(); 074 } 075 076 @Test 077 public void testActionListFyiGroupBookmark() throws Exception { 078 testActionListFyiGroup(); 079 } 080 081 @Test 082 public void testActionListFyiPersonBookmark() throws Exception { 083 testActionListFyiPerson(); 084 } 085 086 @Test 087 public void testActionListAcknowledgePerson_WithPendingApprove_Bookmark() throws Exception { 088 testActionListAcknowledgePerson_WithPendingApprove(); 089 } 090 091 @Test 092 public void testActionListAcknowledgePerson_WithPendingAcknowledge_Bookmark() throws Exception { 093 testActionListAcknowledgePerson_WithPendingAcknowledge(); 094 } 095 096 @Test 097 public void testActionListApprovePerson_WithPendingApprove_Bookmark() throws Exception { 098 testActionListApprovePerson_WithPendingApprove(); 099 } 100 101 @Test 102 public void testActionListApprovePerson_WithPendingAcknowledge_Bookmark() throws Exception { 103 testActionListApprovePerson_WithPendingAcknowledge(); 104 } 105 106 107 @Test 108 public void testPermissionActionListSave_WithPendingPersonApprove_Bookmark() throws Exception { 109 testPermissionActionListSave_WithPendingPersonApprove(); 110 } 111 112 @Test 113 public void testPermissionActionListCancel_WithPendingPersonApprove_Bookmark() throws Exception { 114 testPermissionActionListCancel_WithPendingPersonApprove(); 115 } 116 117 @Test 118 @Ignore("Permission recall not implemented on screen") 119 public void testPermissionActionListRecallAndCancel_WithPendingPersonApprove_Bookmark() throws Exception { 120 testPermissionActionListRecallAndCancel_WithPendingPersonApprove(); 121 } 122 123 @Test 124 @Ignore("Permission recall not implemented on screen") 125 public void testPermissionActionListRecallToActionList_WithPendingPersonApprove_Bookmark() throws Exception { 126 testPermissionActionListRecallToActionList_WithPendingPersonApprove(); 127 } 128 129 @Test 130 public void testPermissionActionListSubmit_WithPendingPersonApprove_Bookmark() throws Exception { 131 testPermissionActionListSubmit_WithPendingPersonApprove(); 132 } 133 134 @Test 135 public void testPermissionActionListSubmit_WithPendingPersonAcknowledge_Bookmark() throws Exception { 136 testPermissionActionListSubmit_WithPendingPersonAcknowledge(); 137 } 138 139 @Test 140 public void testPermissionActionListSubmit_WithPendingPersonFyi_Bookmark() throws Exception { 141 testPermissionActionListSubmit_WithPendingPersonFyi(); 142 } 143}