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 --- .../java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vid-app-common/src/test/java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java (limited to 'vid-app-common/src/test/java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java') diff --git a/vid-app-common/src/test/java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java b/vid-app-common/src/test/java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java new file mode 100644 index 000000000..40e086837 --- /dev/null +++ b/vid-app-common/src/test/java/org/openecomp/vid/asdc/beans/tosca/TestSuite.java @@ -0,0 +1,12 @@ +package org.openecomp.vid.asdc.beans.tosca; + +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses( + +{ GroupTest.class, TopologyTemplateTest.class, ToscaModelTest.class, CapabilityTest.class, ToscaMetadataTest.class, + ConstraintTest.class, NodeTemplateTest.class }) +public class TestSuite { // nothing +} -- cgit 1.2.3-korg