Fix yanglib SFT failure
[netconf.git] / netconf / yanglib / src / test / java / org / opendaylight / yanglib / impl / YangLibRestAppTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, 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
9 package org.opendaylight.yanglib.impl;
10
11 import static junit.framework.TestCase.assertTrue;
12
13 import java.util.Set;
14 import org.junit.Test;
15
16 public class YangLibRestAppTest {
17
18     @Test
19     public void testYangLibRestApp() {
20         final YangLibRestApp yangLibRestApp = new YangLibRestApp();
21         final Set singleton = yangLibRestApp.getSingletons();
22
23         assertTrue(singleton.contains(yangLibRestApp.getYangLibService()));
24     }
25 }