total property

int get total
inherited

Implementation

int get total {
  int testCount = children
      .whereType<_Test>()
      .where((element) => element.ranSuccessfully != null)
      .length;
  children
      .whereType<_Group>()
      .forEach((element) => testCount += element.total);
  return testCount;
}