creates common test functions
[transportpce.git] / test-common / src / main / java / org / opendaylight / transportpce / test / AbstractTest.java
1 /*
2  * Copyright © 2016 AT&T 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.transportpce.test;
9
10 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
11 import org.opendaylight.controller.md.sal.dom.api.DOMDataBroker;
12 import org.opendaylight.transportpce.test.common.DataStoreContext;
13 import org.opendaylight.transportpce.test.common.DataStoreContextImpl;
14
15 public abstract class AbstractTest {
16
17     private final DataStoreContext dataStoreContextUtil;
18
19     protected AbstractTest() {
20         dataStoreContextUtil = new DataStoreContextImpl();
21     }
22
23     public DataBroker getDataBroker() {
24         return dataStoreContextUtil.getDataBroker();
25     }
26
27     public DOMDataBroker getDOMDataBroker() {
28         return dataStoreContextUtil.getDOMDataBroker();
29     }
30
31     public DataStoreContext getDataStoreContextUtil() {
32         return dataStoreContextUtil;
33     }
34
35 }