From 78028f3b588241200e31b71b8190e9926af626e9 Mon Sep 17 00:00:00 2001 From: Ofir Sonsino Date: Mon, 9 Oct 2017 11:08:05 +0300 Subject: Improve SONAR coverage Change-Id: Ib36c2e6df9fe100a301b89769078c7a06d3a9ae5 Issue-ID: VID-72 Signed-off-by: Ofir Sonsino --- .../src/test/java/org/openecomp/vid/policy/TestSuite.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/policy/TestSuite.java (limited to 'vid-app-common/src/test/java/org/openecomp/vid/policy/TestSuite.java') diff --git a/vid-app-common/src/test/java/org/openecomp/vid/policy/TestSuite.java b/vid-app-common/src/test/java/org/openecomp/vid/policy/TestSuite.java new file mode 100644 index 00000000..b0ff4659 --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/policy/TestSuite.java @@ -0,0 +1,12 @@ +package org.openecomp.vid.policy; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses( + +{ RestObjectTest.class, PolicyResponseWrapperTest.class, PolicyRestIntTest.class, PolicyUtilTest.class, + PolicyRestInterfaceTest.class }) +public class TestSuite { // nothing +} -- cgit 1.2.3-korg