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