run method

  1. @mustCallSuper
Future<void> run(
  1. Phase phase
)

Executes this Component's activities related to running the test.

Overrides of run must call super.run in an unawaited fashion. For example:

@override
Future<void> run(Phase phase) async {
  unawaited(super.run(phase));
  // New code goes here!
}

Implementation

@mustCallSuper
Future<void> run(Phase phase) async {
  for (final component in _components) {
    unawaited(component.run(phase));
  }
}