register all tests, begin work on running all tests for 'tag'

This commit is contained in:
Malcolm Noyes
2013-11-22 11:47:21 +00:00
parent 2a14dffe97
commit c88413dd58
7 changed files with 167 additions and 126 deletions

View File

@@ -46,6 +46,12 @@ namespace Catch {
#endif // detect CLR
struct MSTestReporter : SharedImpl<IStreamingReporter> {
MSTestReporter( ReporterConfig const& _config )
: m_config( _config.fullConfig() ),
m_headerPrinted( false ),
m_atLeastOneTestCasePrinted( false )
{}
MSTestReporter( Ptr<IConfig> const& _fullConfig )
: m_config( _fullConfig ),
m_headerPrinted( false ),