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