progress property

double progress

Returns the current progress within a test run or 0 if no test is running.

Implementation

double get progress => _progress;
void progress=(double progress)

Sets the current progress of the test run. The value 0 may be used to indicate a test has just started or no test is currently running.

Implementation

set progress(double progress) {
  if (_progress != progress) {
    _progress = progress;
    _progressStreamController.add(progress);
  }
}