Home
last modified time | relevance | path

Searched refs:TestCaseInfo (Results 1 – 23 of 23) sorted by relevance

/external/catch2/include/internal/
Dcatch_test_case_info.cpp23 TestCaseInfo::SpecialProperties parseSpecialTag( std::string const& tag ) { in parseSpecialTag()
26 return TestCaseInfo::IsHidden; in parseSpecialTag()
28 return TestCaseInfo::Throws; in parseSpecialTag()
30 return TestCaseInfo::ShouldFail; in parseSpecialTag()
32 return TestCaseInfo::MayFail; in parseSpecialTag()
34 return TestCaseInfo::NonPortable; in parseSpecialTag()
36 …return static_cast<TestCaseInfo::SpecialProperties>( TestCaseInfo::Benchmark | TestCaseInfo::IsHid… in parseSpecialTag()
38 return TestCaseInfo::None; in parseSpecialTag()
41 …return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cas… in isReservedTag()
71 TestCaseInfo::SpecialProperties prop = parseSpecialTag( tag ); in makeTestCase()
[all …]
Dcatch_test_case_info.h27 struct TestCaseInfo { struct
38 TestCaseInfo( std::string const& _name, argument
44 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
62 class TestCase : public TestCaseInfo { argument
65 TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
71 TestCaseInfo const& getTestCaseInfo() const;
Dcatch_test_spec.h32 virtual bool matches( TestCaseInfo const& testCase ) const = 0;
42 bool matches( TestCaseInfo const& testCase ) const override;
50 bool matches( TestCaseInfo const& testCase ) const override;
58 bool matches( TestCaseInfo const& testCase ) const override;
66 bool matches( TestCaseInfo const& testCase ) const;
79 bool matches( TestCaseInfo const& testCase ) const;
Dcatch_test_spec.cpp35 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { in matches()
45 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { in matches()
57 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { in matches()
62 bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { in matches()
78 bool TestSpec::matches( TestCaseInfo const& testCase ) const { in matches()
Dcatch_interfaces_reporter.h116 TestCaseStats( TestCaseInfo const& _testInfo,
128 TestCaseInfo testInfo;
222 virtual void testCaseStarting( TestCaseInfo const& testInfo ) = 0;
242 virtual void skipTest( TestCaseInfo const& testInfo ) = 0;
Dcatch_interfaces_reporter.cpp68 TestCaseStats::TestCaseStats( TestCaseInfo const& _testInfo, in TestCaseStats()
/external/catch2/include/reporters/
Dcatch_reporter_bases.hpp64 void testCaseStarting(TestCaseInfo const& _testInfo) override { in testCaseStarting()
86 void skipTest(TestCaseInfo const&) override { in skipTest()
96 LazyStat<TestCaseInfo> currentTestCaseInfo;
172 void testCaseStarting( TestCaseInfo const& ) override {} in testCaseStarting()
243 void skipTest(TestCaseInfo const&) override {} in skipTest()
Dcatch_reporter_listening.h45 void testCaseStarting( TestCaseInfo const& testInfo ) override;
56 void skipTest( TestCaseInfo const& testInfo ) override;
Dcatch_reporter_listening.cpp95 void ListeningReporter::testCaseStarting( TestCaseInfo const& testInfo ) { in testCaseStarting()
153 void ListeningReporter::skipTest( TestCaseInfo const& testInfo ) { in skipTest()
Dcatch_reporter_teamcity.hpp49 void skipTest( TestCaseInfo const& /* testInfo */ ) override { in skipTest()
145 void testCaseStarting( TestCaseInfo const& testInfo ) override { in testCaseStarting()
Dcatch_reporter_automake.hpp48 void skipTest( TestCaseInfo const& testInfo ) override { in skipTest()
Dcatch_reporter_junit.h31 void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
Dcatch_reporter_xml.h37 void testCaseStarting(TestCaseInfo const& testInfo) override;
Dcatch_reporter_junit.cpp90 void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) { in testCaseStarting()
Dcatch_reporter_xml.cpp71 void XmlReporter::testCaseStarting( TestCaseInfo const& testInfo ) { in testCaseStarting()
/external/catch2/docs/
Devent-listeners.md32 void testCaseStarting( Catch::TestCaseInfo const& testInfo ) override {
55 virtual void testCaseStarting( TestCaseInfo const& testInfo );
67 virtual void skipTest( TestCaseInfo const& testInfo );
/external/bcc/tests/cc/
Dcatch.hpp2811 struct TestCaseInfo { struct
2820 TestCaseInfo( std::string const& _name,
2826 TestCaseInfo( TestCaseInfo const& other );
2828 friend void setTags( TestCaseInfo& testCaseInfo, std::set<std::string> const& tags );
2845 class TestCase : public TestCaseInfo {
2848 TestCase( ITestCase* testCase, TestCaseInfo const& info );
2855 TestCaseInfo const& getTestCaseInfo() const;
3178 virtual bool matches( TestCaseInfo const& testCase ) const = 0;
3186 virtual bool matches( TestCaseInfo const& testCase ) const { in matches()
3197 virtual bool matches( TestCaseInfo const& testCase ) const { in matches()
[all …]
/external/catch2/single_include/catch2/
Dcatch_reporter_teamcity.hpp49 void skipTest( TestCaseInfo const& /* testInfo */ ) override { in skipTest()
145 void testCaseStarting( TestCaseInfo const& testInfo ) override { in testCaseStarting()
Dcatch_reporter_automake.hpp48 void skipTest( TestCaseInfo const& testInfo ) override { in skipTest()
Dcatch.hpp4732 struct TestCaseInfo { struct
4743 TestCaseInfo( std::string const& _name,
4749 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
4767 class TestCase : public TestCaseInfo {
4770 TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
4776 TestCaseInfo const& getTestCaseInfo() const;
5076 virtual bool matches( TestCaseInfo const& testCase ) const = 0;
5086 bool matches( TestCaseInfo const& testCase ) const override;
5094 bool matches( TestCaseInfo const& testCase ) const override;
5102 bool matches( TestCaseInfo const& testCase ) const override;
[all …]
/external/catch2/examples/
D210-Evt-EventListeners.cpp149 void print( std::ostream& os, int const level, std::string const& title, Catch::TestCaseInfo const&… in print()
324 void skipTest( Catch::TestCaseInfo const& testInfo ) override { in skipTest()
332 void testCaseStarting( Catch::TestCaseInfo const& testInfo ) override { in testCaseStarting()
/external/libabigail/tests/lib/
Dcatch.hpp4763 struct TestCaseInfo { struct
4774 TestCaseInfo( std::string const& _name,
4780 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
4798 class TestCase : public TestCaseInfo {
4801 TestCase( ITestInvoker* testCase, TestCaseInfo&& info );
4807 TestCaseInfo const& getTestCaseInfo() const;
5107 virtual bool matches( TestCaseInfo const& testCase ) const = 0;
5117 bool matches( TestCaseInfo const& testCase ) const override;
5125 bool matches( TestCaseInfo const& testCase ) const override;
5133 bool matches( TestCaseInfo const& testCase ) const override;
[all …]
/external/deqp/external/vulkancts/modules/vulkan/descriptor_indexing/
DvktDescriptorSetsIndexingTests.cpp4272 struct TestCaseInfo in descriptorIndexingDescriptorSetsCreateTests() struct
4281 TestCaseInfo casesAfterBindAndLoop[] = in descriptorIndexingDescriptorSetsCreateTests()
4343 TestCaseInfo& info (casesAfterBindAndLoop[caseIdx]); in descriptorIndexingDescriptorSetsCreateTests()
4362 TestCaseInfo casesAfterBindAndLoopAndLOD[] = in descriptorIndexingDescriptorSetsCreateTests()
4413 TestCaseInfo& info (casesAfterBindAndLoopAndLOD[caseIdx]); in descriptorIndexingDescriptorSetsCreateTests()
4436 TestCaseInfo casesNonAfterBindAndLoop[] = in descriptorIndexingDescriptorSetsCreateTests()
4496 TestCaseInfo& info(casesNonAfterBindAndLoop[caseIdx]); in descriptorIndexingDescriptorSetsCreateTests()
4515 TestCaseInfo casesMinNonUniform[] = in descriptorIndexingDescriptorSetsCreateTests()
4612 TestCaseInfo& info(casesMinNonUniform[caseIdx]); in descriptorIndexingDescriptorSetsCreateTests()