blob: a3fa7bca36526930bf3453044ef65aaca173d576 (
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.mso;
import org.junit.Test;
public class RestMsoImplementationTest {
private RestMsoImplementation createTestSubject() {
return new RestMsoImplementation();
}
// @Test
// public void testInitMsoClient() throws Exception {
// RestMsoImplementation testSubject;
//
// // default test
// testSubject = createTestSubject();
// testSubject.initMsoClient();
// }
}
|