Skip to content

Commit bcd4e53

Browse files
committed
Changed stepStart and stepFinish to __stepStart and __stepFinish
to improve readability of tests
1 parent afe056e commit bcd4e53

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 stepStart(String stepName){
204+
public void __stepStart(String stepName){
205205
Allure.LIFECYCLE.fire(new StepStartedEvent(stepName));
206206
}
207207

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

0 commit comments

Comments
 (0)