Home
last modified time | relevance | path

Searched refs:reporterName (Results 1 – 9 of 9) sorted by relevance

/external/catch2/include/internal/
Dcatch_session.cpp34 … IStreamingReporterPtr createReporter(std::string const& reporterName, IConfigPtr const& config) { in createReporter() argument
35 … auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config); in createReporter()
36 CATCH_ENFORCE(reporter, "No reporter registered with name: '" << reporterName << "'"); in createReporter()
Dcatch_config.hpp60 std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER; member
Dcatch_config.cpp40 std::string const& Config::getReporterName() const { return m_data.reporterName; } in getReporterName()
Dcatch_commandline.cpp118 config.reporterName = lcReporter; in makeCommandLineParser()
/external/catch2/projects/SelfTest/IntrospectiveTests/
DCmdLine.tests.cpp290 CHECK(config.reporterName == "console");
332 REQUIRE(config.reporterName == "console");
337 REQUIRE(config.reporterName == "xml");
342 REQUIRE(config.reporterName == "junit");
/external/catch2/single_include/catch2/
Dcatch.hpp4687 std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER; member
7885 config.reporterName = lcReporter; in makeCommandLineParser()
8045 std::string const& Config::getReporterName() const { return m_data.reporterName; } in getReporterName()
10862 … IStreamingReporterPtr createReporter(std::string const& reporterName, IConfigPtr const& config) { in createReporter() argument
10863 … auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config); in createReporter()
10864 CATCH_ENFORCE(reporter, "No reporter registered with name: '" << reporterName << "'"); in createReporter()
/external/catch2/projects/SelfTest/Baselines/
Dcompact.sw.approved.txt827 CmdLine.tests.cpp:<line number>: passed: config.reporterName == "console" for: "console" == "consol…
842 CmdLine.tests.cpp:<line number>: passed: config.reporterName == "console" for: "console" == "consol…
844 CmdLine.tests.cpp:<line number>: passed: config.reporterName == "xml" for: "xml" == "xml"
846 CmdLine.tests.cpp:<line number>: passed: config.reporterName == "junit" for: "junit" == "junit"
Dconsole.sw.approved.txt5894 CHECK( config.reporterName == "console" )
6001 REQUIRE( config.reporterName == "console" )
6019 REQUIRE( config.reporterName == "xml" )
6037 REQUIRE( config.reporterName == "junit" )
/external/bcc/tests/cc/
Dcatch.hpp6200 …Ptr<IStreamingReporter> createReporter( std::string const& reporterName, Ptr<Config> const& config… in createReporter() argument
6201 …ngReporter> reporter = getRegistryHub().getReporterRegistry().create( reporterName, config.get() ); in createReporter()
6204 oss << "No reporter registered with name: '" << reporterName << "'"; in createReporter()