Home
last modified time | relevance | path

Searched refs:m_reporterCount (Results 1 – 2 of 2) sorted by relevance

/TaskScheduler/ThirdParty/UnitTest++/UnitTest++/
H A DCompositeTestReporter.cpp7 : m_reporterCount(0) in CompositeTestReporter()
13 return m_reporterCount; in GetReporterCount()
18 if (m_reporterCount == kMaxReporters) in AddReporter()
21 m_reporters[m_reporterCount++] = reporter; in AddReporter()
27 for (int index = 0; index < m_reporterCount; ++index) in RemoveReporter()
31 m_reporters[index] = m_reporters[m_reporterCount - 1]; in RemoveReporter()
32 --m_reporterCount; in RemoveReporter()
42 for (int index = 0; index < m_reporterCount; ++index) in ReportFailure()
48 for (int index = 0; index < m_reporterCount; ++index) in ReportTestStart()
54 for (int index = 0; index < m_reporterCount; ++index) in ReportTestFinish()
[all …]
H A DCompositeTestReporter.h25 int m_reporterCount; variable