Deprecate all MD-SAL APIs
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / sal / binding / test / AbstractDataServiceTest.java
index 7acdafef245f85871e251ad073f0c281bddafbef..4dfc92881de8a9d1b8d5ab1291f727eb99a328b3 100644 (file)
@@ -10,26 +10,22 @@ package org.opendaylight.controller.sal.binding.test;
 import com.google.common.util.concurrent.ListeningExecutorService;
 import com.google.common.util.concurrent.MoreExecutors;
 import org.junit.Before;
-import org.opendaylight.controller.sal.binding.api.data.DataProviderService;
 import org.opendaylight.controller.sal.binding.test.util.BindingBrokerTestFactory;
 import org.opendaylight.controller.sal.binding.test.util.BindingTestContext;
 
+@Deprecated
 public abstract class AbstractDataServiceTest {
 
-    protected DataProviderService baDataService;
-
     protected BindingTestContext testContext;
 
     @Before
     public void setUp() {
-        ListeningExecutorService executor = MoreExecutors.sameThreadExecutor();
+        ListeningExecutorService executor = MoreExecutors.newDirectExecutorService();
         BindingBrokerTestFactory factory = new BindingBrokerTestFactory();
         factory.setExecutor(executor);
         factory.setStartWithParsedSchema(getStartWithSchema());
         testContext = factory.getTestContext();
         testContext.start();
-
-        baDataService = testContext.getBindingDataBroker();
     }
 
     protected boolean getStartWithSchema() {