Don't redirect stout for basic reporter

This commit is contained in:
Phil Nash
2012-02-17 09:28:21 +00:00
parent 93b8a39c38
commit a57b025c9c
6 changed files with 38 additions and 3 deletions

View File

@@ -79,6 +79,14 @@ namespace Catch
private: // IReporter
///////////////////////////////////////////////////////////////////////////
virtual bool shouldRedirectStdout
()
const
{
return false;
}
///////////////////////////////////////////////////////////////////////////
virtual void StartTesting
()

View File

@@ -82,6 +82,14 @@ namespace Catch
private: // IReporter
///////////////////////////////////////////////////////////////////////////
virtual bool shouldRedirectStdout
()
const
{
return true;
}
///////////////////////////////////////////////////////////////////////////
virtual void StartTesting()
{

View File

@@ -40,6 +40,14 @@ namespace Catch
private: // IReporter
///////////////////////////////////////////////////////////////////////////
virtual bool shouldRedirectStdout
()
const
{
return true;
}
///////////////////////////////////////////////////////////////////////////
virtual void StartTesting
()