515a6768b37fd1f318b5e6643adbab0dd31d6160
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / ns / JU_Responsible.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.ns;
24
25 import org.junit.Assert;
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.fail;
28
29 import java.io.IOException;
30 import java.security.GeneralSecurityException;
31
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.onap.aaf.auth.cmd.AAFcli;
35 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
36 import org.onap.aaf.cadi.LocatorException;
37 import org.onap.aaf.misc.env.APIException;
38
39 public class JU_Responsible {
40
41 //    private static Responsible responsible;//TODO: Gabe[JUnit] check with Jonathan
42 //
43 //    @BeforeClass
44 //    public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException {
45 //        AAFcli cli = JU_AAFCli.getAAfCli();
46 //        NS ns = new NS(cli);
47 //        responsible = new Responsible(ns);
48 //
49 //    }
50 //
51 //    @Test
52 //    public void exec1() {
53 //        try {
54 //            responsible._exec(0, "del", "del", "del");
55 //        } catch (Exception e) {
56 //            assertEquals(e.getMessage(), "java.net.UnknownHostException: DME2RESOLVE");
57 //        }
58 //    }
59 //
60 //    @Test
61 //    public void detailedHelp() {
62 //        boolean hasNoError = true;
63 //        try {
64 //            responsible.detailedHelp(1, new StringBuilder("test"));
65 //        } catch (Exception e) {
66 //            hasNoError = false;
67 //        }
68 //        assertEquals(hasNoError, true);
69 //    }
70     
71     @Test
72     public void netYetTested() {
73         Assert.assertTrue(true);
74     }
75
76 }