executeReusableTest method
void
executeReusableTest(
- AFSingleScreenPrototypeBody body,
- AFScreenTestID bodyId, {
- List<
Object> params = const <Object>[], - String? disabled,
This is obsolete, do not use.
Implementation
void executeReusableTest(AFSingleScreenPrototypeBody body, AFScreenTestID bodyId, {
List<Object> params = const <Object>[],
String? disabled,
}) {
final paramsFull = params.map<Object>((e) => td(e)).toList();
body.executeReusable(screenTests, bodyId, params: paramsFull, disabled: disabled);
}