summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/dcae/composition/restmodels/ruleeditor/LogEventActionTest.java
blob: 52437f798e937baea7b36ae55605ca6203387efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.onap.sdc.dcae.composition.restmodels.ruleeditor;

import org.junit.Test;

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

public class LogEventActionTest {

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

	@Test
	public void checkEquals() {
		assertThat(LogEventAction.class, hasValidBeanEquals());
	}

	@Test
	public void testHasValidConstructor() {
		assertThat(LogEventAction.class, hasValidBeanConstructor());
	}

	@Test
	public void checkHashCodeFor() {
		assertThat(LogEventAction.class, hasValidBeanHashCodeFor());
	}
}