Renamed ResultInfo -> AssertionResult

This commit is contained in:
Phil Nash
2012-10-16 08:27:21 +01:00
parent 175da3ef64
commit d16955f63a
15 changed files with 111 additions and 97 deletions

View File

@@ -31,7 +31,7 @@ namespace Catch{
return totals;
}
void MockReporter::Result( const ResultInfo& resultInfo ) {
void MockReporter::Result( const AssertionResult& resultInfo ) {
if( resultInfo.getResultType() == ResultWas::Ok )
return;

View File

@@ -95,7 +95,7 @@ namespace Catch {
closeLabel( recordTestCases, testInfo.getName() );
}
virtual void Result( const ResultInfo& resultInfo );
virtual void Result( const AssertionResult& resultInfo );
private: