Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-cmd / src / test / java / org / onap / aaf / auth / cmd / test / JU_Version.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.assertEquals;
25 import static org.junit.Assert.fail;
26 import static org.junit.Assert.assertTrue;
27
28 import java.io.IOException;
29 import java.security.GeneralSecurityException;
30
31 import org.eclipse.jetty.http.HttpStatus;
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.Version;
38 import org.onap.aaf.cadi.CadiException;
39 import org.onap.aaf.cadi.LocatorException;
40 import org.onap.aaf.misc.env.APIException;
41
42 import junit.framework.Assert;
43
44 //import com.att.aft.dme2.internal.jetty.http.HttpStatus;
45 //TODO: Gabe [JUnit] Import missing
46 @RunWith(MockitoJUnitRunner.class)
47 public class JU_Version {
48     
49     private static AAFcli cli;
50     private static Version version;
51     
52     @BeforeClass
53     public static void setUp() throws APIException, LocatorException, GeneralSecurityException, IOException, CadiException {
54         cli = JU_AAFCli.getAAfCli();
55         version = new Version(cli);
56     }
57     
58 //    @Test
59 //    public void exec_HTTP_200() throws CadiException, APIException, LocatorException {
60 //        assertEquals(version._exec(0, "Version"), HttpStatus.OK_200);
61 //
62 //    }
63     
64     @Test                        //TODO: Temporary fix AAF-111
65     public void netYetTested() {
66         Assert.assertTrue(true);
67     }
68 }