aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/policy/PolicyRestInterfaceFactoryTest.java
blob: bb21c89f05c6ce4b6511df7bcfe622f327f4b473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.vid.policy;

import org.junit.Test;

public class PolicyRestInterfaceFactoryTest {

    private PolicyRestInterfaceFactory createTestSubject() {
        return new PolicyRestInterfaceFactory();
    }

    @Test
    public void testGetInstance() throws Exception {
        PolicyRestInterfaceIfc result;

        // default test
        result = PolicyRestInterfaceFactory.getInstance();
    }
}