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

import org.junit.Test;

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

public class DataTest {

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