Remove pointless member variable from RunContext

This commit is contained in:
Martin Hořeňovský 2023-03-20 20:34:58 +01:00
parent 3c8fb6bbb2
commit 28437e1214
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
2 changed files with 1 additions and 4 deletions

View File

@ -167,13 +167,12 @@ namespace Catch {
RunContext::RunContext(IConfig const* _config, IEventListenerPtr&& reporter)
: m_runInfo(_config->name()),
m_context(getCurrentMutableContext()),
m_config(_config),
m_reporter(CATCH_MOVE(reporter)),
m_lastAssertionInfo{ StringRef(), SourceLineInfo("",0), StringRef(), ResultDisposition::Normal },
m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().shouldReportAllAssertions )
{
m_context.setResultCapture(this);
getCurrentMutableContext().setResultCapture( this );
m_reporter->testRunStarting(m_runInfo);
}

View File

@ -24,7 +24,6 @@
namespace Catch {
class IMutableContext;
class IGeneratorTracker;
class IConfig;
@ -132,7 +131,6 @@ namespace Catch {
void handleUnfinishedSections();
TestRunInfo m_runInfo;
IMutableContext& m_context;
TestCaseHandle const* m_activeTestCase = nullptr;
ITracker* m_testCaseTracker = nullptr;
Optional<AssertionResult> m_lastResult;