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

import org.junit.Test;

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

public class ThinServiceTest {

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