Remove spaces from dockerbuild script
[aaf/authz.git] / auth / auth-cass / src / test / java / org / onap / aaf / auth / direct / test / JU_DirectAAFLur.java
1 /*******************************************************************************
2  * ============LICENSE_START====================================================
3  * * org.onap.aaf
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * * ===========================================================================
7  * * Licensed under the Apache License, Version 2.0 (the "License");
8  * * you may not use this file except in compliance with the License.
9  * * You may obtain a copy of the License at
10  * * 
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * * 
13  *  * Unless required by applicable law or agreed to in writing, software
14  * * distributed under the License is distributed on an "AS IS" BASIS,
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * * See the License for the specific language governing permissions and
17  * * limitations under the License.
18  * * ============LICENSE_END====================================================
19  * *
20  * *
21  ******************************************************************************/
22 package org.onap.aaf.auth.direct.test;
23
24 import static org.junit.Assert.assertTrue;
25
26 import java.security.Principal;
27
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.onap.aaf.auth.dao.hl.Question;
32 import org.onap.aaf.auth.direct.DirectAAFLur;
33 import org.onap.aaf.auth.env.AuthzEnv;
34 import org.onap.aaf.cadi.Permission;
35 import org.powermock.modules.junit4.PowerMockRunner;
36 @RunWith(PowerMockRunner.class)
37 public class JU_DirectAAFLur {
38         
39 public static AuthzEnv env;
40 public static Question question;
41 public DirectAAFLur directAAFLur;
42
43
44
45         @Before
46         public void setUp()
47         {
48         directAAFLur = new DirectAAFLur(env, question); 
49         }
50         
51         @Test
52         public void testFish()
53         {
54                 
55         Principal bait = null;
56         Permission pond=null;
57         directAAFLur.fish(bait, pond);  
58         
59         assertTrue(true);
60                 
61         }
62         
63 }