Refactor mdsal-binding-generator artifacts
[mdsal.git] / binding / mdsal-binding-generator-util / src / test / java / org / opendaylight / mdsal / binding / model / util / BindingTypesTest.java
diff --git a/binding/mdsal-binding-generator-util/src/test/java/org/opendaylight/mdsal/binding/model/util/BindingTypesTest.java b/binding/mdsal-binding-generator-util/src/test/java/org/opendaylight/mdsal/binding/model/util/BindingTypesTest.java
deleted file mode 100644 (file)
index f271337..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.mdsal.binding.model.util;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-import static org.opendaylight.mdsal.binding.model.util.Types.typeForClass;
-
-import org.junit.Test;
-import org.opendaylight.mdsal.binding.model.api.ParameterizedType;
-import org.opendaylight.yangtools.yang.binding.Augmentable;
-import org.opendaylight.yangtools.yang.binding.Augmentation;
-import org.opendaylight.yangtools.yang.binding.BaseIdentity;
-import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.DataRoot;
-import org.opendaylight.yangtools.yang.binding.Identifiable;
-import org.opendaylight.yangtools.yang.binding.Identifier;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.binding.Notification;
-import org.opendaylight.yangtools.yang.binding.NotificationListener;
-import org.opendaylight.yangtools.yang.binding.RpcService;
-
-public class BindingTypesTest {
-
-    @Test
-    public void staticBindingTypesTest() {
-        assertEquals("AUGMENTABLE", typeForClass(Augmentable.class), BindingTypes.AUGMENTABLE);
-        assertEquals("AUGMENTATION", typeForClass(Augmentation.class), BindingTypes.AUGMENTATION);
-        assertEquals("BASE_IDENTITY", typeForClass(BaseIdentity.class), BindingTypes.BASE_IDENTITY);
-        assertEquals("DATA_OBJECT", typeForClass(DataObject.class), BindingTypes.DATA_OBJECT);
-        assertEquals("DATA_ROOT", typeForClass(DataRoot.class), BindingTypes.DATA_ROOT);
-        assertEquals("IDENTIFIABLE", typeForClass(Identifiable.class), BindingTypes.IDENTIFIABLE);
-        assertEquals("IDENTIFIER", typeForClass(Identifier.class), BindingTypes.IDENTIFIER);
-        assertEquals("INSTANCE_IDENTIFIER", typeForClass(InstanceIdentifier.class), BindingTypes.INSTANCE_IDENTIFIER);
-        assertEquals("NOTIFICATION", typeForClass(Notification.class), BindingTypes.NOTIFICATION);
-        assertEquals("NOTIFICATION_LISTENER", typeForClass(NotificationListener.class),
-            BindingTypes.NOTIFICATION_LISTENER);
-        assertEquals("RPC_SERVICE", typeForClass(RpcService.class), BindingTypes.RPC_SERVICE);
-    }
-
-    @Test(expected = NullPointerException.class)
-    public void testAugmentableNull() {
-        BindingTypes.augmentable(null);
-    }
-
-    @Test(expected = NullPointerException.class)
-    public void testChildOfNull() {
-        BindingTypes.childOf(null);
-    }
-
-    @Test
-    public void testAugmentable() {
-        ParameterizedType augmentableType = BindingTypes.augmentable(Types.objectType());
-        assertEquals("Augmentable", augmentableType.getName());
-    }
-
-    @Test
-    public void testChildOf() {
-        assertNotNull(BindingTypes.childOf(Types.objectType()));
-    }
-
-    @Test(expected = NullPointerException.class)
-    public void testAugmentationNull() {
-        BindingTypes.augmentation(null);
-    }
-
-    @Test
-    public void testAugmentation() {
-        ParameterizedType augmentationType = BindingTypes.augmentation(Types.objectType());
-        assertEquals("Augmentation", augmentationType.getName());
-    }
-}
\ No newline at end of file