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_Describe.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 import static org.mockito.Mockito.CALLS_REAL_METHODS;
27 import static org.mockito.Mockito.mock;
28
29 import java.lang.reflect.Field;
30 import java.lang.reflect.Modifier;
31
32 import org.junit.BeforeClass;
33 import org.junit.Test;
34 import org.junit.runner.RunWith;
35 import org.mockito.runners.MockitoJUnitRunner;
36 import org.onap.aaf.auth.cmd.AAFcli;
37 import org.onap.aaf.auth.cmd.ns.Describe;
38 import org.onap.aaf.auth.cmd.ns.NS;
39 import org.onap.aaf.auth.cmd.test.JU_AAFCli;
40 import org.onap.aaf.cadi.CadiException;
41 import org.onap.aaf.cadi.LocatorException;
42 import org.onap.aaf.misc.env.APIException;
43
44 @RunWith(MockitoJUnitRunner.class)
45 public class JU_Describe {
46         
47 //      private static Describe desc;
48 //      
49 //      @BeforeClass
50 //      public static void setUp () throws NoSuchFieldException, SecurityException, Exception, IllegalAccessException {
51 //              AAFcli cli = JU_AAFCli.getAAfCli();
52 //              NS ns = new NS(cli);
53 //              desc = new Describe(ns);
54 //      }
55 //      
56 //      @Test
57 //      public void exec() {
58 //              try {
59 //                      assertEquals(desc._exec(0, "add","del","reset","extend"),500);
60 //              } catch (CadiException e) {
61 //                      // TODO Auto-generated catch block
62 //                      e.printStackTrace();
63 //              } catch (APIException e) {
64 //                      // TODO Auto-generated catch block
65 //                      e.printStackTrace();
66 //              } catch (LocatorException e) {
67 //                      // TODO Auto-generated catch block
68 //                      e.printStackTrace();
69 //              }
70 //      }
71         
72         @Test                                           //TODO: Temporary fix AAF-111
73         public void netYetTested() {
74                 fail("Tests not yet implemented");
75         }
76 }
77