summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/info/DistributionStatusOfServiceListResponceTest.java
blob: e4d3c9bce9a0169c3ca482a6766598e2dc6c0346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdc.be.info;

import org.junit.Test;

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


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