aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/ServiceRelationshipsTest.java
blob: 9b51ee1963ae8234b2fa4ee4b0ab3f60fb99b563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 ServiceRelationshipsTest {

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