Eliminate org.opendaylight.mdsal.binding.generator.spi
[mdsal.git] / binding / mdsal-binding-generator-api / src / test / java / org / opendaylight / mdsal / binding / model / api / DefaultTypeTest.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.model.api;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import org.junit.Test;
14
15 public class DefaultTypeTest {
16     @Test
17     public void testCreateNewReferencedType() {
18         DefaultType refType = DefaultType.of(JavaTypeName.create("org.opendaylight.yangtools.test", "RefTypeTest"));
19         assertEquals("RefTypeTest", refType.getName());
20     }
21
22     @Test
23     public void testToStringMethod() {
24         DefaultType refType = DefaultType.of(JavaTypeName.create("org.opendaylight.yangtools.test", "RefTypeTest"));
25         assertTrue(refType.toString().contains("RefTypeTest"));
26     }
27 }