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

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