}
@Test
public void testGetSetAction() {
// Arrange
RuleAction expectedAction = new RuleAction();
RuleInfo RuleInfo = new RuleInfo();
// Act
RuleAction actualAction = RuleInfo.setAction(expectedAction)
.getAction();
// Assert
assertEquals(expectedAction, actualAction);
}