Unit tests
[vid.git] / vid-app-common / src / test / java / org / onap / vid / factories / MsoRequestFactoryTest.java
1 package org.onap.vid.factories;
2
3 import org.junit.Test;
4
5 public class MsoRequestFactoryTest {
6
7     private MsoRequestFactory createTestSubject() {
8         return new MsoRequestFactory();
9     }
10
11     @Test
12     public void testCreateMsoRequest() throws Exception {
13         MsoRequestFactory testSubject;
14         String path = "";
15
16         // default test
17         testSubject = createTestSubject();
18         testSubject.createMsoRequest(path);
19     }
20 }