e777bd3d5fbe902544ffe65705ff8073ff030f33
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / test / java / org / opendaylight / mdsal / binding / dom / adapter / test / tests / AbstractDataBrokerTestTest.java
1 /*
2  * Copyright (c) 2016 Red Hat, 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.mdsal.binding.dom.adapter.test.tests;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import org.junit.Test;
13 import org.opendaylight.mdsal.binding.dom.adapter.test.AbstractDataBrokerTest;
14
15 public class AbstractDataBrokerTestTest extends AbstractDataBrokerTest {
16
17     @Test
18     public void ensureDataBrokerTestModuleWorksWithoutException() {
19         assertNotNull(getDataBroker());
20     }
21
22 }