passing property

bool passing

Returns whether or not the test is currently passing. Will be false if no test is currently running.

Implementation

bool get passing => _passing;
void passing=(bool passing)

Sets whether or not a test is currently passing. The value false may be used to indicate no test is running or the current test is failing.

Implementation

set passing(bool passing) {
  if (_passing != passing) {
    _passing = passing;
    _passingStreamController.add(passing);
  }
}