aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap')
-rw-r--r--src/test/java/org/onap/cps/temporal/ApplicationTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/test/java/org/onap/cps/temporal/ApplicationTest.java b/src/test/java/org/onap/cps/temporal/ApplicationTest.java
index 8d5903f..842b94a 100644
--- a/src/test/java/org/onap/cps/temporal/ApplicationTest.java
+++ b/src/test/java/org/onap/cps/temporal/ApplicationTest.java
@@ -19,14 +19,19 @@
package org.onap.cps.temporal;
+import org.assertj.core.util.Arrays;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
+// This test class without any assertion is obviously not really useful.
+// Its only purpose is to be able to cover current code.
+// It should be deleted when more code will be added to the project.
@SpringBootTest
class ApplicationTest {
@Test
- void contextLoads() {
+ void testMain() {
+ Application.main(Arrays.array());
}
}