summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/dcae/composition/model/NodeFilterTest.java
blob: 890bc9870e52a6fa3b08a434b2593114b81f6e54 (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 NodeFilterTest {

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