/* * 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.*; import static org.mockito.Mockito.mock; import org.junit.Test; import org.opendaylight.controller.sal.restconf.impl.RestCodec; import org.opendaylight.yangtools.concepts.Codec; import org.opendaylight.yangtools.yang.model.api.type.IdentityrefTypeDefinition; import org.opendaylight.yangtools.yang.model.util.BitsType; public class RestCodecExceptionsTest { @Test public void serializeExceptionTest() { Codec codec = RestCodec.from(new BitsType(null), null); String serializedValue = (String) codec.serialize("incorrect value"); // set // expected assertEquals("incorrect value", serializedValue); } @Test public void deserializeExceptionTest() { IdentityrefTypeDefinition mockedIidentityrefType = mock(IdentityrefTypeDefinition.class); Codec codec = RestCodec.from(mockedIidentityrefType, null); assertNull(codec.deserialize("incorrect value")); } }