Instance identifier support
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / RestCodecExceptionsTest.java
index fcc4c02a6f5e05401ec5e18ab0dc0902747d31bd..2b6efbdc4d40363577a7d024eb563fc204d05838 100644 (file)
@@ -1,6 +1,6 @@
 package org.opendaylight.controller.sal.restconf.impl.test;
 
-import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.*;
 import static org.mockito.Mockito.mock;
 
 import org.junit.Test;
@@ -13,7 +13,7 @@ public class RestCodecExceptionsTest {
 
     @Test
     public void serializeExceptionTest() {
-        Codec<Object, Object> codec = RestCodec.from(new BitsType(null));
+        Codec<Object, Object> codec = RestCodec.from(new BitsType(null), null);
         String serializedValue = (String) codec.serialize("incorrect value"); // set
                                                                               // expected
         assertEquals("incorrect value", serializedValue);
@@ -23,11 +23,8 @@ public class RestCodecExceptionsTest {
     public void deserializeExceptionTest() {
         IdentityrefTypeDefinition mockedIidentityrefType = mock(IdentityrefTypeDefinition.class);
 
-        Codec<Object, Object> codec = RestCodec.from(mockedIidentityrefType);
-        String serializedValue = (String) codec.deserialize("incorrect value"); // IdentityValuesDTO
-                                                                                // object
-        // expected
-        assertEquals("incorrect value", serializedValue);
+        Codec<Object, Object> codec = RestCodec.from(mockedIidentityrefType, null);
+        assertNull(codec.deserialize("incorrect value"));
     }
 
 }