X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Ftest%2FRestCodecExceptionsTest.java;h=983377e1e8c161000c7e3a684feef2292d065ed1;hb=02f34337b56b74def8fe59a7681c1012a58d4f04;hp=36da6d669a237b963f8b550e2b5fe6762dd83b97;hpb=6145a414aa83be539b377c1952a3a33ed7031322;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestCodecExceptionsTest.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestCodecExceptionsTest.java index 36da6d669a..983377e1e8 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestCodecExceptionsTest.java +++ b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/RestCodecExceptionsTest.java @@ -1,6 +1,13 @@ +/* + * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ 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; @@ -24,10 +31,7 @@ public class RestCodecExceptionsTest { IdentityrefTypeDefinition mockedIidentityrefType = mock(IdentityrefTypeDefinition.class); Codec codec = RestCodec.from(mockedIidentityrefType, null); - String serializedValue = (String) codec.deserialize("incorrect value"); // IdentityValuesDTO - // object - // expected - assertEquals("incorrect value", serializedValue); + assertNull(codec.deserialize("incorrect value")); } }