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 org.kuali.rice.krad.labs.transactional;
17  
18  import org.junit.Test;
19  
20  /**
21   * Tests lookup security for an authorized user (dev1).
22   *
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public class LabsLookupSecurityTravelAuthorizationDocumentAuthorizedAft extends LabsLookupSecurityTravelAuthorizationDocumentBase {
26  
27      @Override
28      public String getUserName() {
29          return "dev1";
30      }
31  
32      @Test
33      public void testTransactionalLookupSecurityAuthorizedBookmark() throws Exception {
34          testTransactionalLookupSecurity();
35          passed();
36      }
37  
38      @Test
39      public void testTransactionalLookupSecurityAuthorizedNav() throws Exception {
40          testTransactionalLookupSecurity();
41          passed();
42      }
43  
44      @Test
45      public void testTransactionalLookupSecurityAddDataDictionaryConversionFieldAuthorizedBookmark() throws Exception {
46          testTransactionalLookupSecurityAddDataDictionaryConversionField();
47          passed();
48      }
49  
50      @Test
51      public void testTransactionalLookupSecurityAddDataDictionaryConversionFieldAuthorizedNav() throws Exception {
52          testTransactionalLookupSecurityAddDataDictionaryConversionField();
53          passed();
54      }
55  
56      @Test
57      public void testTransactionalLookupSecurityAddUifConversionFieldAuthorizedBookmark() throws Exception {
58          testTransactionalLookupSecurityAddUifConversionField();
59          passed();
60      }
61  
62      @Test
63      public void testTransactionalLookupSecurityAddUifConversionFieldAuthorizedNav() throws Exception {
64          testTransactionalLookupSecurityAddUifConversionField();
65          passed();
66      }
67  
68      @Test
69      public void testTransactionalLookupSecurityAddHiddenConversionFieldAuthorizedBookmark() throws Exception {
70          testTransactionalLookupSecurityAddHiddenConversionField();
71          passed();
72      }
73  
74      @Test
75      public void testTransactionalLookupSecurityAddHiddenConversionFieldAuthorizedNav() throws Exception {
76          testTransactionalLookupSecurityAddHiddenConversionField();
77          passed();
78      }
79  
80  }