Merge "Logging improvements"
[vid.git] / vid-app-common / src / test / java / org / onap / vid / policy / PolicyRestInterfaceFactoryTest.java
1 package org.onap.vid.policy;
2
3 import org.junit.Test;
4
5 public class PolicyRestInterfaceFactoryTest {
6
7     private PolicyRestInterfaceFactory createTestSubject() {
8         return new PolicyRestInterfaceFactory();
9     }
10
11     @Test
12     public void testGetInstance() throws Exception {
13         PolicyRestInterfaceIfc result;
14
15         // default test
16         result = PolicyRestInterfaceFactory.getInstance();
17     }
18 }