X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Ftest%2Ftests%2FAbstractDataBrokerTestTest.java;fp=opendaylight%2Fmd-sal%2Fsal-binding-broker%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fmd%2Fsal%2Fbinding%2Ftest%2Ftests%2FAbstractDataBrokerTestTest.java;h=e46d442b217ada72231609928bad506063527fde;hp=0000000000000000000000000000000000000000;hb=e0819c56a40458d9eac0ebbbe1d2049f795cfe95;hpb=7afabf1610a04034a1c4e3da2e0af28f6644c518 diff --git a/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/tests/AbstractDataBrokerTestTest.java b/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/tests/AbstractDataBrokerTestTest.java new file mode 100644 index 0000000000..e46d442b21 --- /dev/null +++ b/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/tests/AbstractDataBrokerTestTest.java @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2016 Red Hat, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.md.sal.binding.test.tests; + +import static com.google.common.truth.Truth.assertThat; + +import org.junit.Test; +import org.opendaylight.controller.md.sal.binding.test.AbstractDataBrokerTest; + +public class AbstractDataBrokerTestTest extends AbstractDataBrokerTest { + + @Test + public void ensureDataBrokerTestModuleWorksWithoutException() { + assertThat(getDataBroker()).isNotNull(); + } + +}