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

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