44c5dc9c0df6cb3cb90d5b99464ae5bb76e1f033
[mdsal.git] / binding / mdsal-binding-test-utils / src / test / java / org / opendaylight / mdsal / binding / testutils / 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.mdsal.binding.testutils;
9
10 import static com.google.common.truth.Truth.assertThat;
11
12 import org.junit.Test;
13
14 public class DataBrokerTestModuleTest {
15
16     @Test
17     public void ensureDataBrokerTestModuleWorksWithoutException() {
18         assertThat(DataBrokerTestModule.dataBroker()).isNotNull();
19     }
20 }