summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/dcae/composition/restmodels/ruleeditor/LogEventActionTest.java
blob: d17085dc0b16f20f616b52d1553e94258ff1ef5a (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 LogEventActionTest {

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