aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/info/ToscaNodeTypeInterfaceTest.java
blob: c74ce36a922ccbaf14c99380f0e7fefc68a36592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 ToscaNodeTypeInterfaceTest {


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

}