loadTests method

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

Loads the list of tests from the assigned TestReader. This accepts the BuildContext to allow the reader to provide visual feedback to the user in case the load takes a while.

Implementation

Future<List<PendingTest>?> loadTests(
  BuildContext? context, {
  String? suiteName,
}) =>
    _testReader(
      context,
      suiteName: suiteName,
    );