Refactored internal interfaces to use Totals instead of success/ fail

This commit is contained in:
Phil Nash 2012-02-23 18:51:21 +00:00
parent 8d93949b19
commit 9bbaeba3ae
7 changed files with 43 additions and 45 deletions

View file

@ -391,21 +391,13 @@ namespace Catch
}
///////////////////////////////////////////////////////////////////////////
virtual std::size_t getSuccessCount
virtual Totals getTotals
()
const
{
return m_totals.assertions.passed;
return m_totals;
}
///////////////////////////////////////////////////////////////////////////
virtual std:: size_t getFailureCount
()
const
{
return m_totals.assertions.failed;
}
private: // IResultCapture
///////////////////////////////////////////////////////////////////////////