From 1cfb08779ea0e00be69e072a940b3063e049fe6b Mon Sep 17 00:00:00 2001 From: Ofir Sonsino Date: Wed, 31 Jan 2018 17:19:00 +0200 Subject: org.onap migration Change-Id: I52f0b2851f2c765752b6d21f49b32136d7d72a3d Issue-ID: VID-86 Signed-off-by: Ofir Sonsino --- .../vid/controller/HealthCheckControllerTest.java | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java (limited to 'vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java') diff --git a/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java b/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java deleted file mode 100644 index 045ad9a6..00000000 --- a/vid-app-common/src/test/java/org/openecomp/vid/controller/HealthCheckControllerTest.java +++ /dev/null @@ -1,47 +0,0 @@ -package org.openecomp.vid.controller; - -import org.junit.Test; -import org.openecomp.vid.controller.HealthCheckController.HealthStatus; - -public class HealthCheckControllerTest { - - private HealthCheckController createTestSubject() { - return new HealthCheckController(); - } - - @Test - public void testGetProfileCount() throws Exception { - HealthCheckController testSubject; - String driver = ""; - String URL = ""; - String username = ""; - String password = ""; - int result; - - // default test - testSubject = createTestSubject(); - result = testSubject.getProfileCount(driver, URL, username, password); - } - - @Test - public void testGethealthCheckStatusforIDNS() throws Exception { - HealthCheckController testSubject; - HealthStatus result; - - // default test - testSubject = createTestSubject(); - result = testSubject.gethealthCheckStatusforIDNS(); - } - - @Test - public void testGetHealthCheck() throws Exception { - HealthCheckController testSubject; - String UserAgent = ""; - String ECOMPRequestID = ""; - HealthStatus result; - - // default test - testSubject = createTestSubject(); - result = testSubject.getHealthCheck(UserAgent, ECOMPRequestID); - } -} \ No newline at end of file -- cgit 1.2.3-korg