diff options
author | Liam Fallon <liam.fallon@est.tech> | 2019-06-18 12:42:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-06-18 12:42:51 +0000 |
commit | 95c4529dc6ee374a1438af53ccff2033a11d1902 (patch) | |
tree | db54fac667d8c079df87f1f85d6ce203a0a33927 /main/src/test/java | |
parent | db27731b36f50bfe731fd33e96f2c3ce34f659e0 (diff) | |
parent | 7403d21c2c60368c34d4750ffaa698fc9379f1be (diff) |
Merge "Change getCanonicalName() to getName() in api"
Diffstat (limited to 'main/src/test/java')
-rw-r--r-- | main/src/test/java/org/onap/policy/api/main/rest/TestApiRestServer.java | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/main/src/test/java/org/onap/policy/api/main/rest/TestApiRestServer.java b/main/src/test/java/org/onap/policy/api/main/rest/TestApiRestServer.java index ec4640e3..166bbb4a 100644 --- a/main/src/test/java/org/onap/policy/api/main/rest/TestApiRestServer.java +++ b/main/src/test/java/org/onap/policy/api/main/rest/TestApiRestServer.java @@ -169,18 +169,13 @@ public class TestApiRestServer { * Method for cleanup after each test. */ @After - public void teardown() { - - try { - if (NetworkUtil.isTcpPortOpen("localhost", 6969, 1, 1000L)) { - if (main != null) { - stopApiService(main); - } else if (restServer != null) { - restServer.stop(); - } + public void teardown() throws Exception { + if (NetworkUtil.isTcpPortOpen("localhost", 6969, 1, 1000L)) { + if (main != null) { + stopApiService(main); + } else if (restServer != null) { + restServer.stop(); } - } catch (InterruptedException | IOException | PolicyApiException exp) { - LOGGER.error("teardown failed", exp); } } |