Skip to content

Commit

Permalink
Modified BaseTest to allow inline @step creation - changed method nam…
Browse files Browse the repository at this point in the history
…es to stepStart() and stepFinish()
  • Loading branch information
robertgates55 committed Dec 4, 2015
1 parent aec0403 commit 446e41d
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 446e41d

Please sign in to comment.