30ea7f82feb907f44299902eca63fe9c7af0142c
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / test / tests / DataBrokerTestModuleTest.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.controller.md.sal.binding.test.tests;
9
10 import static com.google.common.truth.Truth.assertThat;
11
12 import org.junit.Test;
13 import org.opendaylight.controller.md.sal.binding.test.DataBrokerTestModule;
14
15 /**
16  * Integration tests the DataBrokerTestModule.
17  *
18  * @author Michael Vorburger
19  */
20 public class DataBrokerTestModuleTest {
21
22     @Test
23     public void ensureDataBrokerTestModuleWorksWithoutException() {
24         assertThat(DataBrokerTestModule.dataBroker()).isNotNull();
25     }
26 }