aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/openecomp/vid/mso/MsoRestInterfaceTest.java
blob: 9c96e117a0bcb94ca28f9e243a4ff8f751c4c45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.vid.mso;

import org.apache.poi.hssf.record.formula.functions.T;
import org.junit.Test;

public class MsoRestInterfaceTest {

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

	@Test
	public void testInitMsoClient() throws Exception {
		MsoRestInterface testSubject;

		// default test
		testSubject = createTestSubject();
		testSubject.initMsoClient();
	}

}