Skip to content

Commit

Permalink
Modified BaseTest to allow inline @step creation
Browse files Browse the repository at this point in the history
  • Loading branch information
robertgates55 committed Dec 3, 2015
1 parent 8c2e916 commit aec0403
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 static void startStep(String stepName){
public void startStep(String stepName){
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
}

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

0 comments on commit aec0403

Please sign in to comment.