summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/dcae/composition/restmodels/health/HealthResponseTest.java
blob: c1616e333a967e6b9be135d5415970fb667e43f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.sdc.dcae.composition.restmodels.health;

import org.junit.Test;

import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
import static org.junit.Assert.*;


public class HealthResponseTest {

	@Test
	public void shouldHaveValidGettersAndSetters() {
		assertThat(HealthResponse.class, hasValidGettersAndSetters());
	}
}