bfb4b671508dd0b01f70117c03fdb684a90b4ffe
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / JU_BasicAuth.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
23 package org.onap.aaf.auth.cmd.test;
24
25 import static org.junit.Assert.*;
26 import static org.junit.Assert.assertTrue;
27
28 import java.io.IOException;
29
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.mockito.runners.MockitoJUnitRunner;
33
34 import junit.framework.Assert;
35 //import org.onap.aaf.auth.cmd.BasicAuth;
36 //TODO: Gabe [JUnit] Import missing
37 @RunWith(MockitoJUnitRunner.class)
38 public class JU_BasicAuth {
39     
40 //    @Test
41 //    public void getID () {
42 //        try {
43 //            BasicAuth bAuth = new BasicAuth("testUser", "nopass");
44 //            assertEquals(bAuth.getID(), "testUser");
45 //            System.out.println(bAuth.getID());
46 //        } catch (IOException e) {
47 //            // TODO Auto-generated catch block
48 //            e.printStackTrace();
49 //        }
50 //        
51 //    }
52     
53     @Test
54     public void netYetTested() {
55         Assert.assertTrue(true);
56     }
57 }