Lines Matching +defs:xml +defs:node +defs:name
63 #define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line argument
64 #define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) argument
66 # define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __COUNTER__ ) argument
68 # define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ ) argument
658 const char* name; member
2256 std::string name; member
2325 #define INTERNAL_CATCH_SECTION( name, desc ) \ argument
2835 std::string name; member
2957 std::string name = Detail::getAnnotation( cls, "Name", testCaseName ); in registerTestMethods() local
3059 #define OC_TEST_CASE( name, desc )\ argument
3182 NamePattern( std::string const& name ) in NamePattern()
3520 std::string name; member
3577 …virtual std::string name() const { return m_data.name.empty() ? m_data.processName : m_data… in name() function in Catch::Config
5084 std::string name; member
5095 std::string name; member
5548 TrackerHasName( std::string const& name ) : m_name( name ) {} in TrackerHasName()
5560 TrackerBase( std::string const& name, TrackerContext& ctx, ITracker* parent ) in TrackerBase()
5568 virtual std::string name() const CATCH_OVERRIDE { in name() function in Catch::TestCaseTracking::TrackerBase
5588 virtual ITracker* findChild( std::string const& name ) CATCH_OVERRIDE { in findChild()
5664 SectionTracker( std::string const& name, TrackerContext& ctx, ITracker* parent ) in SectionTracker()
5669 static SectionTracker& acquire( TrackerContext& ctx, std::string const& name ) { in acquire()
5693 IndexTracker( std::string const& name, TrackerContext& ctx, ITracker* parent, int size ) in IndexTracker()
5700 static IndexTracker& acquire( TrackerContext& ctx, std::string const& name, int size ) { in acquire()
5785 struct SignalDefs { int id; const char* name; }; member
6484 std::string name = testCase.getTestCaseInfo().name; in registerTest() local
6592 …virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig const> const& config ) co… in create()
6599 void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) { in registerReporter()
6704 …virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) CAT… in registerReporter()
8655 Ptr<SectionNode> node; in sectionStarting() local
8688 SectionNode& node = *m_sectionStack.back(); in sectionEnded() local
8693 Ptr<TestCaseNode> node = new TestCaseNode( testCaseStats ); in testCaseEnded() local
8704 Ptr<TestGroupNode> node = new TestGroupNode( testGroupStats ); in testGroupEnded() local
8709 Ptr<TestRunNode> node = new TestRunNode( testRunStats ); in testRunEnded() local
8777 LegacyReporterRegistrar( std::string const& name ) { in LegacyReporterRegistrar()
8809 ReporterRegistrar( std::string const& name ) { in ReporterRegistrar()
8835 #define INTERNAL_CATCH_REGISTER_LEGACY_REPORTER( name, reporterType ) \ argument
8838 #define INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType ) \ argument
8934 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute()
8960 XmlWriter& startElement( std::string const& name ) { in startElement()
8970 ScopedElement scopedElement( std::string const& name ) { in scopedElement()
8990 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
8996 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
9002 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute()
9367 std::string name = trim( sectionNode.stats.sectionInfo.name ); in writeSection() local
9461 XmlWriter xml; member in Catch::JunitReporter
10340 #define CATCH_TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description ) argument
10341 …#define CATCH_TEST_CASE_METHOD( className, name, description ) INTERNAL_CATCH_TEST_CASE_METHOD( cl… argument
10342 …#define CATCH_METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE(… argument
10343 …#define CATCH_REGISTER_TEST_CASE( function, name, description ) INTERNAL_CATCH_REGISTER_TESTCASE( … argument
10344 #define CATCH_SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description ) argument
10350 #define CATCH_REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, repor… argument
10351 #define CATCH_REGISTER_LEGACY_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_LEGACY_REPORTE… argument
10360 #define CATCH_SCENARIO( name, tags ) CATCH_TEST_CASE( "Scenario: " name, tags ) argument
10361 #define CATCH_SCENARIO_METHOD( className, name, tags ) INTERNAL_CATCH_TEST_CASE_METHOD( className, … argument
10409 #define TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description ) argument
10410 …#define TEST_CASE_METHOD( className, name, description ) INTERNAL_CATCH_TEST_CASE_METHOD( classNam… argument
10411 …#define METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( metho… argument
10412 …#define REGISTER_TEST_CASE( method, name, description ) INTERNAL_CATCH_REGISTER_TESTCASE( method, … argument
10413 #define SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description ) argument
10419 #define REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, reporterTyp… argument
10420 #define REGISTER_LEGACY_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_LEGACY_REPORTER( nam… argument
10433 #define SCENARIO( name, tags ) TEST_CASE( "Scenario: " name, tags ) argument
10434 #define SCENARIO_METHOD( className, name, tags ) INTERNAL_CATCH_TEST_CASE_METHOD( className, "Scena… argument