Address FIXME for QueuedNotificationManager
[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.*;
12
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.data.api.codec.StringCodec;
15 import org.opendaylight.yangtools.yang.model.util.StringType;
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( StringType.getInstance(), StringCodec.class);
28
29         assertEquals( "serialize", "foo", codec.serialize( "foo" ) );
30         assertEquals( "serialize", "", codec.serialize( "" ) );
31         assertEquals( "serialize", "", codec.serialize( null ) );
32     }
33
34     @SuppressWarnings("unchecked")
35     @Test
36     public void testDeserialize() {
37         StringCodec<String> codec = TypeDefinitionAwareCodecTestHelper.getCodec( StringType.getInstance(), StringCodec.class);
38
39         assertEquals( "deserialize", "bar", codec.deserialize( "bar" ) );
40         assertEquals( "deserialize", "", codec.deserialize( "" ) );
41         assertEquals( "deserialize", "", codec.deserialize( null ) );
42     }
43 }