diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-09-17 10:27:06 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-09-17 10:27:06 -0400 |
commit | 4f44000fef9608150811e0b9f9b140c580f5822b (patch) | |
tree | bf3850a1933a9478813f95bb49187c2c94d99260 /ms | |
parent | 6e74f235edc6027d89adef32340855a2fdf554f2 (diff) |
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) <dt5972@att.com>
Diffstat (limited to 'ms')
-rw-r--r-- | ms/controllerblueprints/application/src/test/java/org/onap/ccsdk/apps/controllerblueprints/ControllerBluprintsApplicationTest.java | 8 |
1 files changed, 2 insertions, 6 deletions
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<ConfigModel> 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());
- }
}
|