Skip to content

Commit

Permalink
Merge pull request #29 from robertgates55/origin/develop
Browse files Browse the repository at this point in the history
Modified BaseTest to allow inline @step creation - changed method nam…
  • Loading branch information
robertgates55 committed Dec 4, 2015
2 parents 94573a8 + 446e41d commit afe056e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/frameworkium/tests/internal/BaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ public static ScreenshotCapture getCapture() {
return capture.get();
}

public void startStep(String stepName){
public void stepStart(String stepName){
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
}

public void finishStep(){
public void stepFinish(){
Allure.LIFECYCLE.fire(new StepFinishedEvent());
}
}

0 comments on commit afe056e

Please sign in to comment.