Remove unused TrackerContext::endRun function

This commit is contained in:
Martin Hořeňovský 2023-02-19 19:45:40 +01:00
parent dcc9fa3f38
commit 1af351cea1
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
2 changed files with 0 additions and 7 deletions

View File

@ -81,12 +81,6 @@ namespace TestCaseTracking {
return *m_rootTracker;
}
void TrackerContext::endRun() {
m_rootTracker.reset();
m_currentTracker = nullptr;
m_runState = NotStarted;
}
void TrackerContext::startCycle() {
m_currentTracker = m_rootTracker.get();
m_runState = Executing;

View File

@ -164,7 +164,6 @@ namespace TestCaseTracking {
public:
ITracker& startRun();
void endRun();
void startCycle();
void completeCycle();