aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/info/ToscaNodeTypeInfoTest.java
blob: 5642b2f1ef894dbc2411b98897c333c7370664d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.sdc.be.info;

import org.junit.Test;

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


public class ToscaNodeTypeInfoTest {


    @Test
    public void shouldHaveValidGettersAndSetters() {
        assertThat(ToscaNodeTypeInfo.class, BeanMatchers.hasValidGettersAndSetters());
    }
    
    @Test
    public void allPropertiesShouldBeRepresentedInToStringOutput() {
        assertThat(ToscaNodeTypeInfo.class, BeanMatchers.hasValidBeanToString());
    }
}