Getter/setter tests inside the aai model
[vid.git] / vid-app-common / src / test / java / org / onap / vid / aai / model / ServiceRelationshipsTest.java
1 package org.onap.vid.aai.model;
2
3 import org.junit.Test;
4
5 import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
6 import static org.hamcrest.MatcherAssert.assertThat;
7
8
9 public class ServiceRelationshipsTest {
10
11     @Test
12     public void shouldHaveValidGettersAndSetters() {
13         assertThat(ServiceRelationships.class, hasValidGettersAndSetters());
14     }
15 }