Add files via upload

This commit is contained in:
soufiane-cheouati
2019-02-12 19:22:40 +00:00
committed by GitHub
parent 0da1ab969a
commit e1241e741f

View File

@@ -11,7 +11,6 @@ public class JsonSerializerUnitTest {
public void givenObjectNotSerializedThenExceptionThrown() throws JsonSerializationException {
Object object = new Object();
ObjectToJsonConverter serializer = new ObjectToJsonConverter();
serializer.convertToJson(object);
assertThrows(JsonSerializationException.class, () -> {
serializer.convertToJson(object);
});