Skip to content

Commit 94573a8

Browse files
committed
Merge pull request #28 from robertgates55/origin/develop
Modified BaseTest to allow inline @step creation
2 parents 8c2e916 + aec0403 commit 94573a8

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

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

0 commit comments

Comments
 (0)