Searched refs:ITracker (Results 1 – 7 of 7) sorted by relevance
/external/catch2/include/internal/ |
D | catch_test_case_tracker.h | 28 struct ITracker; 30 using ITrackerPtr = std::shared_ptr<ITracker>; 32 struct ITracker { struct 33 virtual ~ITracker(); 44 virtual ITracker& parent() = 0; 69 ITracker* m_currentTracker = nullptr; 76 ITracker& startRun(); 83 ITracker& currentTracker(); 84 void setCurrentTracker( ITracker* tracker ); 87 class TrackerBase : public ITracker { [all …]
|
D | catch_test_case_tracker.cpp | 32 ITracker::~ITracker() = default; 40 ITracker& TrackerContext::startRun() { in startRun() 64 ITracker& TrackerContext::currentTracker() { in currentTracker() 67 void TrackerContext::setCurrentTracker( ITracker* tracker ) { in setCurrentTracker() 72 …TrackerBase::TrackerBase( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* p… in TrackerBase() 110 ITracker& TrackerBase::parent() { in parent() 181 …er::SectionTracker( NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) in SectionTracker() 209 ITracker& currentTracker = ctx.currentTracker(); in acquire() 243 using TestCaseTracking::ITracker;
|
D | catch_run_context.h | 133 ITracker* m_testCaseTracker = nullptr; 143 std::vector<ITracker*> m_activeSections;
|
D | catch_run_context.cpp | 19 …( TestCaseTracking::NameAndLocation const& nameAndLocation, TrackerContext& ctx, ITracker* parent ) in GeneratorTracker() 27 ITracker& currentTracker = ctx.currentTracker(); in acquire() 109 ITracker& rootTracker = m_trackerContext.startRun(); in runTest() 177 …ITracker& sectionTracker = SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLoca… in sectionStarted()
|
/external/catch2/projects/SelfTest/IntrospectiveTests/ |
D | PartTracker.tests.cpp | 43 ITracker& testCase = SectionTracker::acquire( ctx, makeNAL( "Testcase" ) ); 46 ITracker& s1 = SectionTracker::acquire( ctx, makeNAL( "S1" ) ); 71 ITracker& testCase2 = SectionTracker::acquire( ctx, makeNAL( "Testcase" ) ); 74 ITracker& s1b = SectionTracker::acquire( ctx, makeNAL( "S1" ) ); 84 ITracker& testCase2 = SectionTracker::acquire( ctx, makeNAL( "Testcase" ) ); 87 ITracker& s1b = SectionTracker::acquire( ctx, makeNAL( "S1" ) ); 90 ITracker& s2 = SectionTracker::acquire( ctx, makeNAL( "S2" ) ); 105 ITracker& s2 = SectionTracker::acquire( ctx, makeNAL( "S2" ) ); 113 ITracker& testCase2 = SectionTracker::acquire( ctx, makeNAL( "Testcase" ) ); 116 ITracker& s1b = SectionTracker::acquire( ctx, makeNAL( "S1" ) ); [all …]
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5460 struct ITracker : SharedImpl<> { struct 5461 virtual ~ITracker(); 5472 virtual ITracker& parent() = 0; 5479 virtual void addChild( Ptr<ITracker> const& child ) = 0; 5480 virtual ITracker* findChild( std::string const& name ) = 0; 5492 Ptr<ITracker> m_rootTracker; 5493 ITracker* m_currentTracker; 5508 ITracker& startRun(); 5527 ITracker& currentTracker() { in currentTracker() 5530 void setCurrentTracker( ITracker* tracker ) { in setCurrentTracker() [all …]
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 5780 struct ITracker; 5782 using ITrackerPtr = std::shared_ptr<ITracker>; 5784 struct ITracker { struct 5785 virtual ~ITracker(); 5796 virtual ITracker& parent() = 0; 5821 ITracker* m_currentTracker = nullptr; 5828 ITracker& startRun(); 5835 ITracker& currentTracker(); 5836 void setCurrentTracker( ITracker* tracker ); 5839 class TrackerBase : public ITracker { [all …]
|