Remove old appc-common
[appc.git] / appc-common / src / test / java / org / onap / appc / CmdLineTest.java
diff --git a/appc-common/src/test/java/org/onap/appc/CmdLineTest.java b/appc-common/src/test/java/org/onap/appc/CmdLineTest.java
deleted file mode 100644 (file)
index 1162d76..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*-\r
- * ============LICENSE_START=======================================================\r
- * ONAP : APPC\r
- * ================================================================================\r
- * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.\r
- * =============================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- *\r
- *      http://www.apache.org/licenses/LICENSE-2.0\r
- *\r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- *\r
- * ============LICENSE_END=========================================================\r
- */\r
-\r
-package org.onap.appc;\r
-\r
-import static org.junit.Assert.assertNotNull;\r
-import org.junit.Test;\r
-\r
-public class CmdLineTest {\r
-    @Test\r
-    public void testMain() {\r
-        String argv[];\r
-        argv = new String[] {"encrypt","abc","ghi"};\r
-        CmdLine.main(argv);\r
-        argv = new String[0];\r
-        CmdLine.main(argv);\r
-        argv = new String[] {"encrypt","abc"};\r
-        CmdLine.main(argv);\r
-        \r
-        CmdLine cmdLine = new CmdLine();\r
-        assertNotNull(cmdLine);\r
-    }\r
-}\r