Moved catch_runnerconfig.hpp into internal

This commit is contained in:
Phil Nash 2010-11-12 19:55:53 +00:00
parent c6177be3bc
commit 3d6fa68970
1 changed files with 127 additions and 0 deletions

View File

@ -0,0 +1,127 @@
/*
* catch_runnerconfig.hpp
* Catch
*
* Created by Phil on 08/11/2010.
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*
*/
#ifndef TWOBLUECUBES_CATCH_RUNNERCONFIG_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_RUNNERCONFIG_HPP_INCLUDED
#include "catch_reporter_registry.hpp"
#include <memory>
#include <vector>
#include <string>
namespace Catch
{
class RunnerConfig
{
public:
enum ListInfo
{
listNone = 0,
listReports = 1,
listTests = 2,
listAll = 3,
listWhatMask = 0xf,
listAsText = 0x10,
listAsXml = 0x11,
listAsMask = 0xf0
};
RunnerConfig()
: m_listSpec( listNone ),
m_reporter( NULL )
{}
void setReporterInfo( const std::string& reporterName )
{
if( m_reporter.get() )
return setError( "Only one reporter may be specified" );
setReporter( ReporterRegistry::instance().create( reporterName, m_reporterConfig ) );
}
void addTestSpec( const std::string& testSpec )
{
m_testSpecs.push_back( testSpec );
}
void setListSpec( ListInfo listSpec )
{
m_listSpec = listSpec;
}
void setFilename( const std::string& filename )
{
m_filename = filename;
}
std::string getFilename()
{
return m_filename;
}
void setError( const std::string& errorMessage )
{
m_message = errorMessage + "\n\n" + "Usage: ...";
}
void setReporter( ITestReporter* reporter )
{
m_reporter = std::auto_ptr<ITestReporter>( reporter );
}
ITestReporter* getReporter()
{
if( !m_reporter.get() )
setReporter( ReporterRegistry::instance().create( "basic", m_reporterConfig ) );
return m_reporter.get();
}
const ITestReporter* getReporter() const
{
return const_cast<RunnerConfig*>( this )->getReporter();
}
ListInfo listWhat() const
{
return (ListInfo)( m_listSpec & listWhatMask );
}
ListInfo listAs() const
{
return (ListInfo)( m_listSpec & listAsMask );
}
ReporterConfig& getReporterConfig()
{
return m_reporterConfig;
}
void setIncludeAll( bool includeAll )
{
m_reporterConfig.setIncludeWhat( includeAll ? ReporterConfig::Include::SuccessfulResults : ReporterConfig::Include::FailedOnly );
}
std::auto_ptr<ITestReporter> m_reporter;
std::string m_filename;
ReporterConfig m_reporterConfig;
std::string m_message;
ListInfo m_listSpec;
std::vector<std::string> m_testSpecs;
};
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_RUNNERCONFIG_HPP_INCLUDED