Merge "Bug 2358: Fixed warnings in Restconf"
[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 public abstract class AbstractDataServiceTest {
18
19     protected DataProviderService baDataService;
20
21     protected BindingTestContext testContext;
22
23     @Before
24     public void setUp() {
25         ListeningExecutorService executor = MoreExecutors.sameThreadExecutor();
26         BindingBrokerTestFactory factory = new BindingBrokerTestFactory();
27         factory.setExecutor(executor);
28         factory.setStartWithParsedSchema(getStartWithSchema());
29         testContext = factory.getTestContext();
30         testContext.start();
31
32         baDataService = testContext.getBindingDataBroker();
33     }
34
35     protected boolean getStartWithSchema() {
36         return true;
37     }
38 }