Move BindingReflections.isNotificationCallback()
[mdsal.git] / binding / mdsal-binding-spec-util / src / test / java / org / opendaylight / mdsal / binding / spec / reflect / BindingReflectionsTest.java
index 83b19615552b9b5a70773366d7a985a1b8be5786..472f174bfe4fcdfe71c22ead14ebaedbcd244e78 100644 (file)
@@ -26,7 +26,6 @@ public class BindingReflectionsTest {
     public void testBindingWithDummyObject() throws Exception {
         assertFalse("Should not be RpcType", BindingReflections.isRpcType(DataObject.class));
         assertTrue("Should be BindingClass", BindingReflections.isBindingClass(DataObject.class));
-        assertFalse("Should not be Notification", BindingReflections.isNotification(DataObject.class));
 
         assertEquals(QName.create("test", "test"), BindingReflections.getQName(TestIdentity.VALUE));
     }