summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZihmin Hoover <zh4590@att.com>2018-04-09 12:13:15 -0400
committerTakamune Cho <tc012c@att.com>2018-04-09 19:54:32 +0000
commit12ce2df4520238933a1f60246b6a62b9307c7490 (patch)
tree5c169aaebfb64225ed4a28716596ffae2f709826
parent9fd8f7425d1929a9d666476a667fa9a4c94c3fc2 (diff)
Add junit coverage to CmdLine class
Introduce junit-tests for CmdLine class Change-Id: I23394ad80882a667dd8189ee9f91441dcf0e31b4 Issue-ID: APPC-838 Signed-off-by: Zihmin Hoover <zh4590@att.com>
-rw-r--r--appc-common/src/test/java/org/onap/appc/CmdLineTest.java42
1 files changed, 42 insertions, 0 deletions
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
index 000000000..6e74358fc
--- /dev/null
+++ b/appc-common/src/test/java/org/onap/appc/CmdLineTest.java
@@ -0,0 +1,42 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * =============================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc;
+
+import static org.junit.Assert.assertNotNull;
+import org.junit.Test;
+
+public class CmdLineTest {
+ @Test
+ public void testMain() {
+ String argv[];
+ argv = new String[] {"encrypt","abc","ghi"};
+ CmdLine.main(argv);
+ argv = new String[0];
+ CmdLine.main(argv);
+ argv = new String[] {"encrypt","abc"};
+ CmdLine.main(argv);
+
+ CmdLine cmdLine = new CmdLine();
+ assertNotNull(cmdLine);
+ }
+}