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

import org.junit.Test;

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

public class EventTypeDefinitionUITest {

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