String actionId = new Date().getTime() + "-COORD-ActionStartCommand-C@1";
String wfApp = "<start to='${someParam}' />";
addRecordToActionTable(actionId, 1, wfApp);
new CoordActionStartXCommand(actionId, "me", "mytoken", "myjob").call();
final JPAService jpaService = Services.get().get(JPAService.class);
CoordinatorActionBean action = jpaService.execute(new CoordActionGetForStartJPAExecutor(actionId));
if (action.getStatus() == CoordinatorAction.Status.SUBMITTED) {
fail("Expected status was FAILED due to incorrect XML element");
}
assertEquals(action.getErrorCode(), ErrorCode.E0701.toString());
assertTrue(action.getErrorMessage().contains(