aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/RelatedToPropertyTest.java
blob: fd01e133cf4b52de58052f2cddfe1ec110969ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.vid.aai.model;

import org.junit.Test;

import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
import static org.hamcrest.MatcherAssert.assertThat;

public class RelatedToPropertyTest {

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