sdc-distribution-client is registered twice in model-loader
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / TestModelLoaderApplication.java
index c54f43e..cd39066 100644 (file)
@@ -20,8 +20,9 @@
  */
 package org.onap.aai.modelloader;
 
-import org.junit.Test;
-import org.onap.aai.modelloader.ModelLoaderApplication;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+import org.junit.jupiter.api.Test;
 
 /**
  * Tests for ModelLoaderApplication class.
@@ -37,6 +38,7 @@ public class TestModelLoaderApplication {
     public void testServiceStarts() {
         // The SDC Distribution Client is disabled.
         ModelLoaderApplication.main(new String[0]);
+        assertTrue(true);
     }
 
 }