Bug 868: Removed use of CompositeNode Binding Codecs.
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / sal / binding / test / AbstractDataServiceTest.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.controller.sal.binding.test;
9
10 import com.google.common.util.concurrent.ListeningExecutorService;
11 import com.google.common.util.concurrent.MoreExecutors;
12 import org.junit.Before;
13 import org.opendaylight.controller.sal.binding.api.data.DataProviderService;
14 import org.opendaylight.controller.sal.binding.test.util.BindingBrokerTestFactory;
15 import org.opendaylight.controller.sal.binding.test.util.BindingTestContext;
16
17 @SuppressWarnings("deprecation")
18 public abstract class AbstractDataServiceTest {
19
20     protected org.opendaylight.controller.sal.core.api.data.DataProviderService biDataService;
21     protected DataProviderService baDataService;
22
23     protected BindingTestContext testContext;
24
25     @Before
26     public void setUp() {
27         ListeningExecutorService executor = MoreExecutors.sameThreadExecutor();
28         BindingBrokerTestFactory factory = new BindingBrokerTestFactory();
29         factory.setExecutor(executor);
30         factory.setStartWithParsedSchema(getStartWithSchema());
31         testContext = factory.getTestContext();
32         testContext.start();
33
34         baDataService = testContext.getBindingDataBroker();
35         biDataService = testContext.getDomDataBroker();
36     }
37
38     protected boolean getStartWithSchema() {
39         return true;
40     }
41 }