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 */ 016package edu.sampleu.admin; 017 018import org.junit.Test; 019 020/** 021 * @author Kuali Rice Team (rice.collab@kuali.org) 022 */ 023public abstract class AdminTmplMthdAftNavCreateNewBase extends AdminTmplMthdAftNavBase { 024 025 @Test 026 public void testCreateNewCancelBookmark() throws Exception { 027 testCreateNewCancel(); 028 passed(); 029 } 030 031 @Test 032 public void testCreateNewCancelNav() throws Exception { 033 testCreateNewCancel(); 034 passed(); 035 } 036 037 @Test 038 public void testCreateNewRequiredBookmark() throws Exception { 039 testCreateNewRequired(); 040 passed(); 041 } 042 043 @Test 044 public void testCreateNewRequiredNav() throws Exception { 045 testCreateNewRequired(); 046 passed(); 047 } 048 049 @Test 050 public void testCreateNewSaveBookmark() throws Exception { 051 testCreateNewSave(); 052 passed(); 053 } 054 055 @Test 056 public void testCreateNewSaveNav() throws Exception { 057 testCreateNewSave(); 058 passed(); 059 } 060 061 @Test 062 public void testCreateNewSaveSubmitBookmark() throws Exception { 063 testCreateNewSaveSubmit(); 064 passed(); 065 } 066 067 @Test 068 public void testCreateNewSaveSubmitNav() throws Exception { 069 testCreateNewSaveSubmit(); 070 passed(); 071 } 072 073 @Test 074 public void testCreateNewSubmitBookmark() throws Exception { 075 testCreateNewSubmit(); 076 passed(); 077 } 078 079 @Test 080 public void testCreateNewSubmitNav() throws Exception { 081 testCreateNewSubmit(); 082 passed(); 083 } 084}