add test args

This commit is contained in:
2025-07-09 11:11:43 +02:00
parent 4666e809f4
commit 0c98ad90a6
3 changed files with 20 additions and 6 deletions

View File

@@ -217,3 +217,13 @@ class MzansiAiArguments {
this.startUpQuestion,
);
}
class TestArguments {
final AppUser user;
final Business? business;
TestArguments(
this.user,
this.business,
);
}