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 testActionListDisapproveGroupBookmark() throws Exception { 062 testActionListDisapproveGroup(); 063 } 064 065 @Test 066 public void testActionListDisapprovePersonBookmark() throws Exception { 067 testActionListDisapprovePerson(); 068 } 069 070 @Test 071 public void testActionListFyiGroupBookmark() throws Exception { 072 testActionListFyiGroup(); 073 } 074 075 @Test 076 public void testActionListFyiPersonBookmark() throws Exception { 077 testActionListFyiPerson(); 078 } 079 }