Split out yang-model-ri
[yangtools.git] / yang / yang-data-impl / src / test / java / org / opendaylight / yangtools / yang / data / impl / codec / 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 package org.opendaylight.yangtools.yang.data.impl.codec;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.yangtools.yang.data.api.codec.StringCodec;
14 import org.opendaylight.yangtools.yang.model.ri.type.BaseTypes;
15
16 /**
17  * Unit tests for StringCodecString.
18  *
19  * @author Thomas Pantelis
20  */
21 public class StringCodecStringTest {
22
23     @SuppressWarnings("unchecked")
24     @Test
25     public void testSerialize() {
26         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.stringType(),
27             StringCodec.class);
28
29         assertEquals("serialize", "foo", codec.serialize("foo"));
30         assertEquals("serialize", "", codec.serialize(""));
31     }
32
33     @SuppressWarnings("unchecked")
34     @Test
35     public void testDeserialize() {
36         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.stringType(),
37             StringCodec.class);
38
39         assertEquals("deserialize", "bar", codec.deserialize("bar"));
40         assertEquals("deserialize", "", codec.deserialize(""));
41     }
42 }