Home
last modified time | relevance | path

Searched refs:TestInfo (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h193 class TestInfo; variable
404 friend class TestInfo;
609 friend class TestInfo;
695 class GTEST_API_ TestInfo {
699 ~TestInfo();
771 friend TestInfo* internal::MakeAndRegisterTestInfo(
780 TestInfo(const std::string& test_suite_name, const std::string& name,
797 static void ClearTestResult(TestInfo* test_info) { in ClearTestResult()
824 GTEST_DISALLOW_COPY_AND_ASSIGN_(TestInfo);
903 const TestInfo* GetTestInfo(int i) const;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h675 TestInfo* test_info) { in AddTestInfo()
708 void set_current_test_info(TestInfo* a_current_test_info) { in set_current_test_info()
759 TestInfo* current_test_info() { return current_test_info_; } in current_test_info()
760 const TestInfo* current_test_info() const { return current_test_info_; } in current_test_info()
893 TestInfo* current_test_info_;
1170 void OnTestStart(const TestInfo& test_info) override { in OnTestStart()
1174 void OnTestEnd(const TestInfo& test_info) override { in OnTestEnd()
H A Dgtest.cc2305 const TestInfo* const first_test_info = test_suite->test_info_list()[0]; in HasSameFixtureClass()
2310 const TestInfo* const this_test_info = impl->current_test_info(); in HasSameFixtureClass()
2540 TestInfo::TestInfo(const std::string& a_test_suite_name, in TestInfo() function in testing::TestInfo
2559 TestInfo::~TestInfo() { delete factory_; } in ~TestInfo()
2581 TestInfo* MakeAndRegisterTestInfo( in MakeAndRegisterTestInfo()
2586 TestInfo* const test_info = in MakeAndRegisterTestInfo()
2587 new TestInfo(test_suite_name, name, type_param, value_param, in MakeAndRegisterTestInfo()
2631 bool operator()(const TestInfo * test_info) const { in operator ()()
2657 void TestInfo::Run() { in Run()
2770 ForEach(test_info_list_, internal::Delete<TestInfo>); in ~TestSuite()
[all …]
H A Dgtest-death-test.cc370 TestInfo* const info = GetUnitTestImpl()->current_test_info(); in DeathTest()
729 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
976 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
1417 const TestInfo* const info = impl->current_test_info(); in AssumeRole()
/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A DSATestBuild.py209 class TestInfo(NamedTuple): class
227 TestQueue = Queue[TestInfo] # this is only processed by mypy
247 projects_to_test: List[TestInfo] = []
252 TestInfo(project,
262 projects_to_test: List[TestInfo]) -> bool: argument
274 projects_to_test: List[TestInfo]) -> bool: argument
308 def __init__(self, test_info: TestInfo, silent: bool = False): argument
H A DSATestBenchmark.py15 from SATestBuild import ProjectTester, stdout, TestInfo
59 test_info = TestInfo(project)
H A DSATestAdd.py58 test_info = SATestBuild.TestInfo(project,
H A DSATestUpdateDiffs.py19 test_info = SATestBuild.TestInfo(project)
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h511 tests_.push_back(std::shared_ptr<TestInfo>( in AddTestPattern()
512 new TestInfo(test_suite_name, test_base_name, meta_factory))); in AddTestPattern()
532 std::shared_ptr<TestInfo> test_info = *test_it; in RegisterTests()
588 struct TestInfo { struct
589 TestInfo(const char* a_test_suite_base_name, const char* a_test_base_name, in TestInfo() function
599 using TestInfoContainer = ::std::vector<std::shared_ptr<TestInfo> >; argument
H A Dgtest-internal.h92 class TestInfo; // Information about a test. variable
558 GTEST_API_ TestInfo* MakeAndRegisterTestInfo(
1362 static ::testing::TestInfo* const test_info_ GTEST_ATTRIBUTE_UNUSED_; \
1367 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_suite_name, \
/netbsd-src/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/
H A Dcommon.py53 class TestInfo(object): class
120 yield TestInfo(test, parser, script_name, input_lines, args, argv,
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/src/
H A Dgmock-spec-builders.cc791 const TestInfo* const test_info = in RegisterUseByOnCallOrExpectCall()