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

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

}