diff options
author | Ofir Sonsino <os0695@att.com> | 2017-10-09 11:08:05 +0300 |
---|---|---|
committer | Ofir Sonsino <os0695@att.com> | 2017-10-09 11:08:05 +0300 |
commit | 78028f3b588241200e31b71b8190e9926af626e9 (patch) | |
tree | 4cc4969710b9f815f382f5e387f2da1bf404703a /vid-app-common/src/test/java/org/openecomp/aai | |
parent | 3274b39fef63c43c6eeb202e98b71b01e0f714ff (diff) |
Improve SONAR coverage
Change-Id: Ib36c2e6df9fe100a301b89769078c7a06d3a9ae5
Issue-ID: VID-72
Signed-off-by: Ofir Sonsino <os0695@att.com>
Diffstat (limited to 'vid-app-common/src/test/java/org/openecomp/aai')
-rw-r--r-- | vid-app-common/src/test/java/org/openecomp/aai/util/JettyObfuscationConversionCommandLineUtilTest.java | 21 | ||||
-rw-r--r-- | vid-app-common/src/test/java/org/openecomp/aai/util/TestSuite.java | 11 |
2 files changed, 32 insertions, 0 deletions
diff --git a/vid-app-common/src/test/java/org/openecomp/aai/util/JettyObfuscationConversionCommandLineUtilTest.java b/vid-app-common/src/test/java/org/openecomp/aai/util/JettyObfuscationConversionCommandLineUtilTest.java new file mode 100644 index 000000000..f72a2825b --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/aai/util/JettyObfuscationConversionCommandLineUtilTest.java @@ -0,0 +1,21 @@ +package org.openecomp.aai.util; + +import org.junit.Test; + +public class JettyObfuscationConversionCommandLineUtilTest { + + private JettyObfuscationConversionCommandLineUtil createTestSubject() { + return new JettyObfuscationConversionCommandLineUtil(); + } + + + @Test + public void testMain() throws Exception { + String[] args = new String[] { "" }; + + // default test + JettyObfuscationConversionCommandLineUtil.main(args); + } + + +}
\ No newline at end of file diff --git a/vid-app-common/src/test/java/org/openecomp/aai/util/TestSuite.java b/vid-app-common/src/test/java/org/openecomp/aai/util/TestSuite.java new file mode 100644 index 000000000..f7d57ad7c --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/aai/util/TestSuite.java @@ -0,0 +1,11 @@ +package org.openecomp.aai.util; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses( + +{ JettyObfuscationConversionCommandLineUtilTest.class }) +public class TestSuite { // nothing +} |