Add missing copyright headers
[yangtools.git] / yang / yang-model-util / src / test / java / org / opendaylight / yangtools / yang / model / util / Int8Test.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.yangtools.yang.model.util;
9
10 import static org.junit.Assert.*;
11
12 import org.junit.Test;
13
14 public class Int8Test {
15
16     @Test
17     public void testInt8() {
18         Int8 int8 = Int8.getInstance();
19         Int8 int8Second = Int8.getInstance();
20         assertTrue("The method 'getInstance()' has to return the same instance", int8 == int8Second);
21         assertTrue("The method 'getBaseType()' is returning incorrect value", int8.getBaseType() == null);
22         assertTrue("The method 'getDefaultType()' is returning incorrect value", int8.getDefaultValue() == null);
23         assertEquals("The method 'toString()' is returning incorrect value",
24                 "type (urn:ietf:params:xml:ns:yang:1)int8", int8.toString());
25
26     }
27
28 }