From 4f44000fef9608150811e0b9f9b140c580f5822b Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Mon, 17 Sep 2018 10:27:06 -0400 Subject: Remove invalid test Test case expects 404 Not Found, but URL used is actually same as one used in 200 OK case. Change-Id: Icf7da8237b483cdf13eccbb4a8bb17c23f300733 Issue-ID: CCSDK-558 Signed-off-by: Timoney, Dan (dt5972) --- .../controllerblueprints/ControllerBluprintsApplicationTest.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ms/controllerblueprints') diff --git a/ms/controllerblueprints/application/src/test/java/org/onap/ccsdk/apps/controllerblueprints/ControllerBluprintsApplicationTest.java b/ms/controllerblueprints/application/src/test/java/org/onap/ccsdk/apps/controllerblueprints/ControllerBluprintsApplicationTest.java index 39cb0da3..58f3ccc3 100644 --- a/ms/controllerblueprints/application/src/test/java/org/onap/ccsdk/apps/controllerblueprints/ControllerBluprintsApplicationTest.java +++ b/ms/controllerblueprints/application/src/test/java/org/onap/ccsdk/apps/controllerblueprints/ControllerBluprintsApplicationTest.java @@ -48,13 +48,14 @@ public class ControllerBluprintsApplicationTest { private HttpHeaders headers; private ResponseEntity entity; + @Before public void setUp(){ headers = new HttpHeaders(); headers.set("Accept", MediaType.APPLICATION_JSON_VALUE); entity = this.restTemplate .exchange("/api/v1/config-model/1", HttpMethod.GET, new HttpEntity<>(headers),ConfigModel.class); - + } @Test @@ -63,9 +64,4 @@ public class ControllerBluprintsApplicationTest { Assert.assertNotNull("failed to get response Config model",entity.getBody()); } - @Test - public void testConfigModelFailure() { - assertThat(entity.getStatusCode()).isEqualTo(HttpStatus.NOT_FOUND); - Assert.assertNotNull("failed to get response Config model",entity.getBody()); - } } -- cgit 1.2.3-korg