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