summaryrefslogtreecommitdiffstats
path: root/ueb-listener/src/test/java/org/onap/ccsdk/sli/northbound/uebclient/SdncVFModuleModelTest.java
blob: 2185543572ae7f1ca6e5b84d3eb2bebee5515e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.onap.ccsdk.sli.northbound.uebclient; 
 
import static org.junit.Assert.*; 
import static org.mockito.Mockito.mock; 
 
import org.junit.Test; 
import org.openecomp.sdc.tosca.parser.api.ISdcCsarHelper; 
import org.openecomp.sdc.toscaparser.api.Group; 
 
public class SdncVFModuleModelTest { 
 
	@Test 
	public void testSdncVFModuleModelConstructor() { 
		Group mockGroup = mock(Group.class); 
		ISdcCsarHelper mockCsarHelper = mock(ISdcCsarHelper.class); 
		SdncVFModuleModel testSdncVFModel = new SdncVFModuleModel(mockCsarHelper, mockGroup); 
		assertNotNull(testSdncVFModel); 
	} 
 
}