Bug 6859 #3 Binding generator v1 refactoring
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / mdsal / binding / yang / types / NodeWrappedTypeTest.java
1 /*
2  * Copyright (c) 2014 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.mdsal.binding.yang.types;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertTrue;
13
14 import org.junit.Test;
15 import org.opendaylight.mdsal.binding.yang.types.NodeWrappedType;
16
17 public class NodeWrappedTypeTest {
18
19     @Test
20     public void test() {
21         NodeWrappedType nwt1 = new NodeWrappedType("obj1");
22         NodeWrappedType nwt2 = new NodeWrappedType("obj2");
23         NodeWrappedType nwt3 = new NodeWrappedType("obj1");
24         String str = "obj3";
25
26         assertTrue("Node nwt1 should equal to itself.", nwt1.equals(nwt1));
27         assertFalse("It can't be possible to compare nwt with string.", nwt1.equals(str));
28         assertFalse("nwt1 shouldn't equal to nwt2.", nwt1.equals(nwt2));
29         assertTrue("Node nwt1 should equal to nwt3.", nwt1.equals(nwt3));
30
31         assertEquals("toString method is returning incorrect value.", "NodeWrappedType{wrappedType=obj1}",
32                 nwt1.toString());
33     }
34 }