Skip to content

Commit afe056e

Browse files
committed
Merge pull request #29 from robertgates55/origin/develop
Modified BaseTest to allow inline @step creation - changed method nam…
2 parents 94573a8 + 446e41d commit afe056e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/frameworkium/tests/internal/BaseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ public static ScreenshotCapture getCapture() {
201201
return capture.get();
202202
}
203203

204-
public void startStep(String stepName){
204+
public void stepStart(String stepName){
205205
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
206206
}
207207

208-
public void finishStep(){
208+
public void stepFinish(){
209209
Allure.LIFECYCLE.fire(new StepFinishedEvent());
210210
}
211211
}

0 commit comments

Comments
 (0)