SectionInfo now goes via new streaming reporter interface

This commit is contained in:
Phil Nash 2012-11-30 08:58:46 +00:00
parent 95df676a27
commit ad6701d222
5 changed files with 59 additions and 41 deletions

View file

@ -50,7 +50,7 @@ namespace Catch {
for(; it != itEnd && !context.aborting(); ++it ) {
reporter.testGroupStarting( it->getName() );
totals += runTestsForGroup( context, *it );
reporter.testGroupEnding( TestGroupStats( it->getName(), totals, context.aborting() ) );
reporter.testGroupEnded( TestGroupStats( it->getName(), totals, context.aborting() ) );
}
return totals;
}