aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2017-12-26 19:14:02 +0200
committerMichael Lando <ml636r@att.com>2017-12-26 21:38:44 +0000
commit1b28dc51cc75ec9237afafa1e5cc993995447058 (patch)
treee33e8c71e2c0f0bffba75b6574da575111d14c7b
parent3c6fa0c93e72fe821429890487b797664a894042 (diff)
sonar plug in fix
Change-Id: Ib8fdef1f537b93494402aece3e145ff716363b68 Issue-ID: SDC-776 Signed-off-by: Michael Lando <ml636r@att.com>
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ToscaExportHandlerTest.java34
-rw-r--r--pom.xml6
2 files changed, 2 insertions, 38 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ToscaExportHandlerTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ToscaExportHandlerTest.java
deleted file mode 100644
index 4399408c5c..0000000000
--- a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/ToscaExportHandlerTest.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.openecomp.sdc.be.tosca;
-
-import org.junit.Test;
-import org.openecomp.sdc.be.model.Component;
-import org.openecomp.sdc.be.tosca.model.ToscaTemplate;
-
-import fj.data.Either;
-
-public class ToscaExportHandlerTest {
-
- private ToscaExportHandler createTestSubject() {
- return new ToscaExportHandler();
- }
-
-
- @Test
- public void testGetDependencies() throws Exception {
- ToscaExportHandler testSubject;
- Component component = null;
- Either<ToscaTemplate, ToscaError> result;
-
- // default test
- testSubject = createTestSubject();
- }
-
-
- @Test
- public void testGetInterfaceFilename() throws Exception {
- String artifactName = "";
- String result;
-
- // default test
- }
-} \ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 26e44db760..5e249f01d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,8 +37,6 @@
<!-- Elastic Search mapper (reference the elastic search version actually). -->
<elastic-search.version>2.1.0</elastic-search.version>
- <catalog-artifacts.version>1.0.0-SNAPSHOT</catalog-artifacts.version>
- <catalog-builders.version>1.0.0-SNAPSHOT</catalog-builders.version>
<jetty.version>9.2.10.v20150310</jetty.version>
<!-- JSON and YAML Parsing -->
@@ -94,8 +92,8 @@
<!--JaCoCO -->
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
- <sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
- <sonar.jacoco.itReportPath>${project.basedir}/../target/it-jacoco.exec</sonar.jacoco.itReportPath>
+ <sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
+ <sonar.jacoco.itReportPath>${project.basedir}/target/it-jacoco.exec</sonar.jacoco.itReportPath>
<sonar.language>java</sonar.language>
<!-- Sonar properties -->
<sonar.sourceEncoding>${project.build.sourceEncoding}</sonar.sourceEncoding>