failures property

int get failures
inherited

Implementation

int get failures {
  int currentFailureCount = testFailCount;
  children
      .whereType<_Group>()
      .forEach((element) => currentFailureCount += element.failures);
  return currentFailureCount;
}