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

import org.junit.Test;

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

public class ReferenceUUIDTest {

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