From: Timoney, Dan (dt5972) Date: Mon, 17 Sep 2018 14:27:06 +0000 (-0400) Subject: Remove invalid test X-Git-Tag: 0.4.2~160^2~107 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=9a8dc7e8f01f088bac9380689901f310cf83b1a9;p=ccsdk%2Fcds.git 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) --- 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 39cb0da3d..58f3ccc30 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()); - } }