564d3437cce18b8654202c8006311f427956bceb
[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
9 package org.opendaylight.yangtools.yang.data.impl.codec;
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     }
33
34     @SuppressWarnings("unchecked")
35     @Test
36     public void testDeserialize() {
37         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec(BaseTypes.stringType(),
38             StringCodec.class);
39
40         assertEquals("deserialize", "bar", codec.deserialize("bar"));
41         assertEquals("deserialize", "", codec.deserialize(""));
42     }
43 }