package org.onap.sdc.dcae.composition.restmodels; import org.junit.Test; import static com.google.code.beanmatchers.BeanMatchers.hasValidBeanConstructor; import static com.google.code.beanmatchers.BeanMatchers.hasValidBeanHashCodeFor; import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters; import static org.junit.Assert.*; public class CreateVFCMTRequestTest { @Test public void shouldHaveValidGettersAndSetters() { assertThat(CreateVFCMTRequest.class, hasValidGettersAndSetters()); } @Test public void testHasValidConstructor() { assertThat(CreateVFCMTRequest.class, hasValidBeanConstructor()); } @Test public void checkHashCodeFor() { assertThat(CreateVFCMTRequest.class, hasValidBeanHashCodeFor()); } }