@Test(expectedExceptions=IllegalArgumentException.class)
public void shouldFailIfSuffixNotSet() throws Exception {
AddSuffixAction action = new AddSuffixAction();
action.setField("to");
action.execute(new Message());
}
@Test(expectedExceptions=IllegalArgumentException.class)
public void shouldFailIfFieldNotSet() throws Exception {
AddSuffixAction action = new AddSuffixAction();