Add junit coverage to CmdLine class 65/41765/3
authorZihmin Hoover <zh4590@att.com>
Mon, 9 Apr 2018 16:13:15 +0000 (12:13 -0400)
committerTakamune Cho <tc012c@att.com>
Mon, 9 Apr 2018 19:54:32 +0000 (19:54 +0000)
Introduce junit-tests for CmdLine class

Change-Id: I23394ad80882a667dd8189ee9f91441dcf0e31b4
Issue-ID: APPC-838
Signed-off-by: Zihmin Hoover <zh4590@att.com>
appc-common/src/test/java/org/onap/appc/CmdLineTest.java [new file with mode: 0644]

diff --git a/appc-common/src/test/java/org/onap/appc/CmdLineTest.java b/appc-common/src/test/java/org/onap/appc/CmdLineTest.java
new file mode 100644 (file)
index 0000000..6e74358
--- /dev/null
@@ -0,0 +1,42 @@
+/*-\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
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.\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