aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/test/java/org/onap/vid/aai/model/AaiRelationResponseTest.java
blob: 3eaa75d3781304dbe62613527759dfc27442942c (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 AaiRelationResponseTest {

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

}