executeReusableTest method

void executeReusableTest(
  1. AFSingleScreenPrototypeBody body,
  2. AFScreenTestID bodyId, {
  3. List<Object> params = const <Object>[],
  4. 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);
}