Remove yang.binding.RpcService
[mdsal.git] / binding / mdsal-binding-spec-util / src / test / java / org / opendaylight / mdsal / binding / spec / reflect / BindingReflectionsTest.java
index 7a9427c83ad34094a891a1c3cef41e2b923b8db1..ec41e1e91b827124a484ff7e531f56bd75e8a57f 100644 (file)
@@ -10,30 +10,18 @@ package org.opendaylight.mdsal.binding.spec.reflect;
 import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertTrue;
 
-import com.google.common.util.concurrent.ListenableFuture;
-import java.util.List;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.binding.Augmentation;
 import org.opendaylight.yangtools.yang.binding.DataObject;
-import org.opendaylight.yangtools.yang.binding.RpcService;
-import org.opendaylight.yangtools.yang.common.QName;
 
 public class BindingReflectionsTest {
-
     @Test
     public void testBindingWithDummyObject() throws Exception {
-        assertFalse("Should not be RpcType", BindingReflections.isRpcType(DataObject.class));
-        assertTrue("Should be BindingClass", BindingReflections.isBindingClass(DataObject.class));
+        assertFalse(BindingReflections.isRpcType(DataObject.class));
+        assertTrue(BindingReflections.isBindingClass(DataObject.class));
     }
 
-    static final class TestImplementation implements Augmentation<TestImplementation>, RpcService {
-        public static final QName QNAME = QName.create("test", "test");
-
-        @SuppressWarnings("static-method")
-        ListenableFuture<List<Object>> rpcMethodTest() {
-            return null;
-        }
-
+    static final class TestImplementation implements Augmentation<TestImplementation> {
         @Override
         public Class<TestImplementation> implementedInterface() {
             return TestImplementation.class;