aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java
diff options
context:
space:
mode:
authorTomasz Wrobel <tomasz.wrobel@nokia.com>2021-03-22 16:07:38 +0100
committerTomasz Wrobel <tomasz.wrobel@nokia.com>2021-03-23 08:54:12 +0100
commit4bff1528f42ea5705a02cc8ba5c08bf2453b31f1 (patch)
treeffcc8f391620a3ec2bbb881ce8f08390d1f70ccc /src/test/java
parent25763727265dd20b0301db0164c3e5549700cab4 (diff)
Fix Sonar issues
- Remove blank characters from input data on validation service - Add NOSONAR to test application context Issue-ID: SDC-3185 Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com> Change-Id: I3a8c3cdf447a2ffa49ee1c961fd73229144349b8
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/org/onap/sdc/helmvalidator/HelmValidatorApplicationTests.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/java/org/onap/sdc/helmvalidator/HelmValidatorApplicationTests.java b/src/test/java/org/onap/sdc/helmvalidator/HelmValidatorApplicationTests.java
index 5b81936..5efbedc 100644
--- a/src/test/java/org/onap/sdc/helmvalidator/HelmValidatorApplicationTests.java
+++ b/src/test/java/org/onap/sdc/helmvalidator/HelmValidatorApplicationTests.java
@@ -27,7 +27,8 @@ import org.springframework.boot.test.context.SpringBootTest;
class HelmValidatorApplicationTests {
@Test
- void contextLoads() {
+ // This method check Spring context load - it no requires assertion (Sonar rule java:S2699)
+ void contextLoads() { // NOSONAR
}
}