diff options
author | James Forsyth <jf2512@att.com> | 2018-08-24 16:21:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-08-24 16:21:31 +0000 |
commit | dfef19e542581df2f69c263721fd6ead3752549d (patch) | |
tree | 40eb244748b8599562e35c491003a3b658b1f0c9 /aai-core/src/test | |
parent | a992c8447913ad4adef713b7cda817e490612cd3 (diff) | |
parent | 718ebdc7cab68315bfa9d622d3b6932221920dee (diff) |
Merge "Fix sonar issues"
Diffstat (limited to 'aai-core/src/test')
-rw-r--r-- | aai-core/src/test/java/org/onap/aai/util/PojoUtilsTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aai-core/src/test/java/org/onap/aai/util/PojoUtilsTest.java b/aai-core/src/test/java/org/onap/aai/util/PojoUtilsTest.java index 3658704e..35065fd5 100644 --- a/aai-core/src/test/java/org/onap/aai/util/PojoUtilsTest.java +++ b/aai-core/src/test/java/org/onap/aai/util/PojoUtilsTest.java @@ -23,6 +23,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; +import java.io.IOException; import java.time.LocalDateTime; import java.time.Month; import java.util.ArrayList; @@ -159,7 +160,7 @@ public class PojoUtilsTest { } @Test - public void testGetXmlFromObject() throws JAXBException { + public void testGetXmlFromObject() throws JAXBException, IOException { NotificationEvent notificationEvent = new NotificationEvent(); notificationEvent.setCambriaPartition("partition"); |