printFinishTest method

  1. @override
void printFinishTest(
  1. AFID id
)

Implementation

@override
void printFinishTest(AFID id) {
  final errors = sectionErrors[id];
  if(errors == null) throw AFException("No errors for $id");
  AFBaseTestExecute.printResultColumn(output, count: errors.pass, suffix: " passed", color: Styles.GREEN);
  output.endLine();
  stats.addPasses(errors.pass);
  final errorCount = errors.errorCount;
  if(errorCount > 0) {
    stats.addErrors(errors);
    AFBaseTestExecute.printErrors(output, errors.errors);
  }

}