summaryrefslogtreecommitdiffstats
path: root/models-interactions/model-impl/appc/src/test
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-02-12 10:11:53 -0500
committerJim Hahn <jrh3@att.com>2021-02-12 12:50:11 -0500
commit6f5608e35e3b366403569b85f21d1d697b797409 (patch)
treea35129049ec2d3c08de4888d7a328f3f96a5ce52 /models-interactions/model-impl/appc/src/test
parentb07dd8a325f55d03f4dfec511ecd096429b4c7b0 (diff)
Use type adapters from common
Addressed the following sonar issue: - remove duplicate code by using gson type adapters from common Issue-ID: POLICY-2905 Change-Id: I7a832ce3e15387ed25061caec3e057f150828dad Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'models-interactions/model-impl/appc/src/test')
-rw-r--r--models-interactions/model-impl/appc/src/test/java/org/onap/policy/appc/util/SerializationTest.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/models-interactions/model-impl/appc/src/test/java/org/onap/policy/appc/util/SerializationTest.java b/models-interactions/model-impl/appc/src/test/java/org/onap/policy/appc/util/SerializationTest.java
index 965a4095c..93c3c9e04 100644
--- a/models-interactions/model-impl/appc/src/test/java/org/onap/policy/appc/util/SerializationTest.java
+++ b/models-interactions/model-impl/appc/src/test/java/org/onap/policy/appc/util/SerializationTest.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* appc
* ================================================================================
- * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017-2019, 2021 AT&T Intellectual Property. All rights reserved.
* Modifications Copyright (C) 2019 Nordix Foundation.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -21,9 +21,10 @@
package org.onap.policy.appc.util;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNull;
+import com.google.gson.JsonParseException;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
@@ -51,6 +52,7 @@ public class SerializationTest {
ZonedDateTime outZdt = Serialization.gsonPretty.fromJson(zdtString, ZonedDateTime.class);
assertEquals(zdt.getDayOfWeek(), outZdt.getDayOfWeek());
- assertNull(Serialization.gsonPretty.fromJson("oz time is weird", ZonedDateTime.class));
+ assertThatThrownBy(() -> Serialization.gsonPretty.fromJson("oz time is weird", ZonedDateTime.class))
+ .isInstanceOf(JsonParseException.class);
}
}