aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/migration/config/mocks/HealthCheckBusinessLogicMockTest.java
blob: a08f9bd04b2e57c561ae8613dae5aa18243976ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.openecomp.sdc.asdctool.migration.config.mocks;

import org.junit.Test;

public class HealthCheckBusinessLogicMockTest {

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

	@Test
	public void testInit() throws Exception {
		HealthCheckBusinessLogicMock testSubject;

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