TF-4236 Set setUp and tearDown for Patrol

This commit is contained in:
dab246
2026-01-20 15:50:25 +07:00
committed by Dat H. Pham
parent 1058b94363
commit b76df6a6f6
4 changed files with 13 additions and 28 deletions
@@ -10,15 +10,9 @@ abstract class BaseTestScenario extends BaseScenario
@override
Future<void> execute() async {
await setupPreLogin();
await executeLoginScenario();
await runTestLogic();
await disposeAfterTest();
}
Future<void> setupPreLogin() async {}
Future<void> runTestLogic();
Future<void> disposeAfterTest() async {}
}