SpecialExecutors with LoggingThreadUncaughtExceptionHandler
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / codecs / StringCodecStringTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yangtools.yang.data.impl.codecs;
10
11 import static org.junit.Assert.assertEquals;
12
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.data.api.codec.StringCodec;
15 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
16
17 /**
18  * Unit tests for StringCodecString.
19  *
20  * @author Thomas Pantelis
21  */
22 public class StringCodecStringTest {
23
24     @SuppressWarnings("unchecked")
25     @Test
26     public void testSerialize() {
27         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.stringType(),
28             StringCodec.class);
29
30         assertEquals("serialize", "foo", codec.serialize("foo"));
31         assertEquals("serialize", "", codec.serialize(""));
32         assertEquals("serialize", "", codec.serialize(null));
33     }
34
35     @SuppressWarnings("unchecked")
36     @Test
37     public void testDeserialize() {
38         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.stringType(),
39             StringCodec.class);
40
41         assertEquals("deserialize", "bar", codec.deserialize("bar"));
42         assertEquals("deserialize", "", codec.deserialize(""));
43         assertEquals("deserialize", "", codec.deserialize(null));
44     }
45 }