runStorageTests method

Future<AutotestSummary> runStorageTests({
  1. dynamic onProgress(
    1. String
    )?,
})

Implementation

Future<AutotestSummary> runStorageTests(
    {Function(String)? onProgress}) async {
  return _runTestGroup(
      'Storage Tests',
      [
        _testEventStorage,
      ],
      onProgress);
}