summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/factories/MsoRequestFactoryTest.java
blob: 2268de8caa00b52f233561c363ee28608196aafc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.vid.factories;

import org.junit.Test;

public class MsoRequestFactoryTest {

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

    @Test
    public void testCreateMsoRequest() throws Exception {
        MsoRequestFactory testSubject;
        String path = "";

        // default test
        testSubject = createTestSubject();
        testSubject.createMsoRequest(path);
    }
}