private static TestStep getErrorTestStep() {
TestStep testStep = new TestStep();
testStep.setStatus(TestStatus.ERROR);
testStep.setMessage("An error occurred.");
testStep.setCommand("errorCommand");
testStep.addAttachment(getDummyAttachment());
return testStep;
}
private static TestStep getOkTestStep() {
TestStep testStep = new TestStep();