@Test(expectedExceptions=IllegalArgumentException.class)
public void shouldThrowExceptionIfFromNotSet() throws Exception {
CopyAction action = new CopyAction();
action.setFrom("prop-2");
action.execute(new Message());
}
@Test(expectedExceptions=IllegalArgumentException.class)
public void shouldThrowExceptionIfToNotSet() throws Exception {
CopyAction action = new CopyAction();