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

import org.junit.Test;

public class SchedulerRestInterfaceFactoryTest {

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

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

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