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

import org.junit.Test;

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

public class VfcmtTest {

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