Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / migration / config / mocks / HealthCheckBusinessLogicMock.java
1 package org.openecomp.sdc.asdctool.migration.config.mocks;
2
3 import javax.annotation.PostConstruct;
4
5 import org.openecomp.sdc.be.components.health.HealthCheckBusinessLogic;
6 import org.springframework.stereotype.Component;
7
8 @Component("healthCheckBusinessLogic")
9 public class HealthCheckBusinessLogicMock extends HealthCheckBusinessLogic {
10
11     @Override
12     @PostConstruct
13     public void init() {
14
15     }
16
17     @Override
18     protected void destroy() {
19
20     }
21 }