Searched refs:test_info (Results 1 - 25 of 43) sorted by relevance

12

/prebuilts/ndk/current/sources/third_party/googletest/googletest/samples/
H A Dsample9_unittest.cc64 virtual void OnTestStart(const TestInfo& test_info) { argument
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) { argument
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/samples/
H A Dsample9_unittest.cc64 virtual void OnTestStart(const TestInfo& test_info) { argument
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) { argument
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/
H A Dsample9_unittest.cc64 virtual void OnTestStart(const TestInfo& test_info) { argument
67 test_info.test_case_name(),
68 test_info.name());
84 virtual void OnTestEnd(const TestInfo& test_info) { argument
87 test_info.test_case_name(),
88 test_info.name());
145 const TestInfo& test_info = *test_case.GetTestInfo(j); local
148 if (test_info.result()->Failed() &&
149 strcmp(test_info.name(), "Fails") != 0) {
/prebuilts/ndk/current/sources/third_party/googletest/googletest/test/
H A Dgtest_shuffle_test_.cc86 virtual void OnTestStart(const TestInfo& test_info) { argument
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
H A Dgtest-unittest-api_test.cc221 const TestInfo* const test_info = test_case->GetTestInfo(0); local
222 EXPECT_STREQ("Dummy2", test_info->name());
223 EXPECT_STREQ("DISABLED_Test", test_info->test_case_name());
224 EXPECT_TRUE(IsNull(test_info->value_param()));
225 EXPECT_TRUE(IsNull(test_info->type_param()));
226 EXPECT_FALSE(test_info->should_run());
H A Dgtest-param-test_test.cc798 const ::testing::TestInfo* const test_info = member in class:testing
801 EXPECT_STREQ("ZeroToFiveSequence/NamingTest", test_info->test_case_name());
805 EXPECT_STREQ(index_stream.GetString().c_str(), test_info->name());
807 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
827 const ::testing::TestInfo* const test_info = member in class:testing
830 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
H A Dgtest_shuffle_test_.cc86 virtual void OnTestStart(const TestInfo& test_info) { argument
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
H A Dgtest-unittest-api_test.cc221 const TestInfo* const test_info = test_case->GetTestInfo(0); local
222 EXPECT_STREQ("Dummy2", test_info->name());
223 EXPECT_STREQ("DISABLED_Test", test_info->test_case_name());
224 EXPECT_TRUE(IsNull(test_info->value_param()));
225 EXPECT_TRUE(IsNull(test_info->type_param()));
226 EXPECT_FALSE(test_info->should_run());
H A Dgtest-param-test_test.cc798 const ::testing::TestInfo* const test_info = member in class:testing
801 EXPECT_STREQ("ZeroToFiveSequence/NamingTest", test_info->test_case_name());
805 EXPECT_STREQ(index_stream.GetString().c_str(), test_info->name());
807 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
827 const ::testing::TestInfo* const test_info = member in class:testing
830 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
H A Dgtest_shuffle_test_.cc86 virtual void OnTestStart(const TestInfo& test_info) { argument
87 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
H A Dgtest-unittest-api_test.cc221 const TestInfo* const test_info = test_case->GetTestInfo(0); local
222 EXPECT_STREQ("Dummy2", test_info->name());
223 EXPECT_STREQ("DISABLED_Test", test_info->test_case_name());
224 EXPECT_TRUE(IsNull(test_info->value_param()));
225 EXPECT_TRUE(IsNull(test_info->type_param()));
226 EXPECT_FALSE(test_info->should_run());
H A Dgtest-param-test_test.cc798 const ::testing::TestInfo* const test_info = member in class:testing
801 EXPECT_STREQ("ZeroToFiveSequence/NamingTest", test_info->test_case_name());
805 EXPECT_STREQ(index_stream.GetString().c_str(), test_info->name());
807 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
827 const ::testing::TestInfo* const test_info = member in class:testing
830 EXPECT_EQ(::testing::PrintToString(GetParam()), test_info->value_param());
/prebuilts/ndk/current/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest.h707 static void ClearTestResult(TestInfo* test_info) { argument
708 test_info->result_.Clear();
826 void AddTestInfo(TestInfo * test_info);
848 static bool TestPassed(const TestInfo* test_info) { argument
849 return test_info->should_run() && test_info->result()->Passed();
853 static bool TestFailed(const TestInfo* test_info) { argument
854 return test_info->should_run() && test_info->result()->Failed();
858 static bool TestDisabled(const TestInfo* test_info) { argument
863 ShouldRunTest(const TestInfo* test_info) argument
[all...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest.h707 static void ClearTestResult(TestInfo* test_info) { argument
708 test_info->result_.Clear();
826 void AddTestInfo(TestInfo * test_info);
848 static bool TestPassed(const TestInfo* test_info) { argument
849 return test_info->should_run() && test_info->result()->Passed();
853 static bool TestFailed(const TestInfo* test_info) { argument
854 return test_info->should_run() && test_info->result()->Failed();
858 static bool TestDisabled(const TestInfo* test_info) { argument
863 ShouldRunTest(const TestInfo* test_info) argument
[all...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest.h707 static void ClearTestResult(TestInfo* test_info) { argument
708 test_info->result_.Clear();
826 void AddTestInfo(TestInfo * test_info);
848 static bool TestPassed(const TestInfo* test_info) { argument
849 return test_info->should_run() && test_info->result()->Passed();
853 static bool TestFailed(const TestInfo* test_info) { argument
854 return test_info->should_run() && test_info->result()->Failed();
858 static bool TestDisabled(const TestInfo* test_info) { argument
863 ShouldRunTest(const TestInfo* test_info) argument
[all...]
/prebuilts/ndk/current/sources/third_party/googletest/googletest/src/
H A Dgtest-internal-inl.h647 // test_info: the TestInfo object
650 TestInfo* test_info) {
664 GetTestCase(test_info->test_case_name(),
665 test_info->type_param(),
667 tear_down_tc)->AddTestInfo(test_info);
1172 void OnTestStart(const TestInfo& test_info) { argument
1173 SendLn(std::string("event=TestStart&name=") + test_info.name());
1176 void OnTestEnd(const TestInfo& test_info) { argument
1178 FormatBool((test_info.result())->Passed()) +
1180 StreamableToString((test_info
648 AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc, TestInfo* test_info) argument
[all...]
H A Dgtest.cc2210 TestInfo* const test_info = local
2213 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2214 return test_info;
2256 // Returns true iff the test name of test_info matches name_.
2257 bool operator()(const TestInfo * test_info) const {
2258 return test_info && test_info->name() == name_;
2397 void TestCase::AddTestInfo(TestInfo * test_info) { argument
2398 test_info_list_.push_back(test_info);
2646 void PrintFullTestCommentIfPresent(const TestInfo& test_info) { argument
2748 OnTestStart(const TestInfo& test_info) argument
2767 OnTestEnd(const TestInfo& test_info) argument
2818 const TestInfo& test_info = *test_case.GetTestInfo(j); local
3257 OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) argument
4380 TestInfo* const test_info = test_case->test_info_list()[j]; local
4447 const TestInfo* const test_info = local
[all...]
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/src/
H A Dgtest-internal-inl.h647 // test_info: the TestInfo object
650 TestInfo* test_info) {
664 GetTestCase(test_info->test_case_name(),
665 test_info->type_param(),
667 tear_down_tc)->AddTestInfo(test_info);
1172 void OnTestStart(const TestInfo& test_info) { argument
1173 SendLn(std::string("event=TestStart&name=") + test_info.name());
1176 void OnTestEnd(const TestInfo& test_info) { argument
1178 FormatBool((test_info.result())->Passed()) +
1180 StreamableToString((test_info
648 AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc, TestInfo* test_info) argument
[all...]
H A Dgtest.cc2210 TestInfo* const test_info = local
2213 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2214 return test_info;
2256 // Returns true iff the test name of test_info matches name_.
2257 bool operator()(const TestInfo * test_info) const {
2258 return test_info && test_info->name() == name_;
2397 void TestCase::AddTestInfo(TestInfo * test_info) { argument
2398 test_info_list_.push_back(test_info);
2646 void PrintFullTestCommentIfPresent(const TestInfo& test_info) { argument
2748 OnTestStart(const TestInfo& test_info) argument
2767 OnTestEnd(const TestInfo& test_info) argument
2818 const TestInfo& test_info = *test_case.GetTestInfo(j); local
3257 OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) argument
4380 TestInfo* const test_info = test_case->test_info_list()[j]; local
4447 const TestInfo* const test_info = local
[all...]
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
H A Dgtest-internal-inl.h647 // test_info: the TestInfo object
650 TestInfo* test_info) {
664 GetTestCase(test_info->test_case_name(),
665 test_info->type_param(),
667 tear_down_tc)->AddTestInfo(test_info);
1172 void OnTestStart(const TestInfo& test_info) { argument
1173 SendLn(std::string("event=TestStart&name=") + test_info.name());
1176 void OnTestEnd(const TestInfo& test_info) { argument
1178 FormatBool((test_info.result())->Passed()) +
1180 StreamableToString((test_info
648 AddTestInfo(Test::SetUpTestCaseFunc set_up_tc, Test::TearDownTestCaseFunc tear_down_tc, TestInfo* test_info) argument
[all...]
H A Dgtest.cc2210 TestInfo* const test_info = local
2213 GetUnitTestImpl()->AddTestInfo(set_up_tc, tear_down_tc, test_info);
2214 return test_info;
2256 // Returns true iff the test name of test_info matches name_.
2257 bool operator()(const TestInfo * test_info) const {
2258 return test_info && test_info->name() == name_;
2397 void TestCase::AddTestInfo(TestInfo * test_info) { argument
2398 test_info_list_.push_back(test_info);
2646 void PrintFullTestCommentIfPresent(const TestInfo& test_info) { argument
2748 OnTestStart(const TestInfo& test_info) argument
2767 OnTestEnd(const TestInfo& test_info) argument
2818 const TestInfo& test_info = *test_case.GetTestInfo(j); local
3257 OutputXmlTestInfo(::std::ostream* stream, const char* test_case_name, const TestInfo& test_info) argument
4380 TestInfo* const test_info = test_case->test_info_list()[j]; local
4447 const TestInfo* const test_info = local
[all...]
/prebuilts/ndk/current/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h490 linked_ptr<TestInfo> test_info = *test_it; local
500 test_case_name += test_info->test_case_base_name;
507 test_name_stream << test_info->test_base_name << "/" << i;
516 test_info->test_meta_factory->CreateTestFactory(*param_it));
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h490 linked_ptr<TestInfo> test_info = *test_it; local
500 test_case_name += test_info->test_case_base_name;
507 test_name_stream << test_info->test_base_name << "/" << i;
516 test_info->test_meta_factory->CreateTestFactory(*param_it));
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h490 linked_ptr<TestInfo> test_info = *test_it; local
500 test_case_name += test_info->test_case_base_name;
507 test_name_stream << test_info->test_base_name << "/" << i;
516 test_info->test_meta_factory->CreateTestFactory(*param_it));
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_urllibnet.py83 def test_info(self): member in class:urlopenNetworkTests

Completed in 364 milliseconds

12