View Javadoc
1   /**
2    * Copyright 2005-2015 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.admin;
17  
18  import org.junit.Test;
19  
20  /**
21   * @author Kuali Rice Team (rice.collab@kuali.org)
22   */
23  public abstract class AdminTmplMthdAftNavCreateNewBase extends AdminTmplMthdAftNavBase {
24  
25      @Test
26      public void testCreateNewCancelBookmark() throws Exception {
27          testCreateNewCancel();
28          passed();
29      }
30  
31      @Test
32      public void testCreateNewCancelNav() throws Exception {
33          testCreateNewCancel();
34          passed();
35      }
36  
37      @Test
38      public void testCreateNewRequiredBookmark() throws Exception {
39          testCreateNewRequired();
40          passed();
41      }
42  
43      @Test
44      public void testCreateNewRequiredNav() throws Exception {
45          testCreateNewRequired();
46          passed();
47      }
48  
49      @Test
50      public void testCreateNewSaveBookmark() throws Exception {
51          testCreateNewSave();
52          passed();
53      }
54  
55      @Test
56      public void testCreateNewSaveNav() throws Exception {
57          testCreateNewSave();
58          passed();
59      }
60  
61      @Test
62      public void testCreateNewSaveSubmitBookmark() throws Exception {
63          testCreateNewSaveSubmit();
64          passed();
65      }
66  
67      @Test
68      public void testCreateNewSaveSubmitNav() throws Exception {
69          testCreateNewSaveSubmit();
70          passed();
71      }
72  
73      @Test
74      public void testCreateNewSubmitBookmark() throws Exception {
75          testCreateNewSubmit();
76          passed();
77      }
78  
79      @Test
80      public void testCreateNewSubmitNav() throws Exception {
81          testCreateNewSubmit();
82          passed();
83      }
84  }