testReader static method

Future<List<PendingTest>?> testReader(
  1. BuildContext? context, {
  2. String? suiteName,
})

Generic no-op function compatible with the TestReader definition.

Implementation

static Future<List<PendingTest>?> testReader(
  BuildContext? context, {
  String? suiteName,
}) async {
  await _showNotSupported(context);
  return null;
}