summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/dcae/composition/model/NodeTest.java
blob: 836e6a8ba4dea0efb8f38a4f266c261781620b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.onap.sdc.dcae.composition.model;

import org.junit.Test;

import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
import static org.junit.Assert.*;

public class NodeTest {

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