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

1234

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Dtest_parser_unittest.py47 test_info = parser.analyze_test(test_contents=test_html)
49 self.assertNotEqual(test_info, None, 'did not find a test')
50 self.assertTrue('test' in test_info.keys(), 'did not find a test file')
51 self.assertTrue('reference' in test_info.keys(), 'did not find a reference file')
52 self.assertTrue(test_info['reference'].startswith(test_path), 'reference path is not correct')
53 self.assertFalse('refsupport' in test_info.keys(), 'there should be no refsupport files for this test')
54 self.assertFalse('jstest' in test_info.keys(), 'test should not have been analyzed as a jstest')
68 test_info = parser.analyze_test(test_contents=test_html)
72 self.assertNotEqual(test_info, None, 'did not find a test')
73 self.assertTrue('test' in test_info
[all...]
H A Dtest_parser.py70 test_info = None
73 return test_info
100 test_info = {'test': self.filename, 'reference': ref_file}
120 test_info['refsupport'] = support_files
123 test_info = {'test': self.filename, 'jstest': True}
125 test_info = {'test': self.filename}
127 return test_info
/external/chromium_org/native_client_sdk/src/examples/tutorial/testing/
H A Dtesting.cc26 virtual void OnTestStart(const ::testing::TestInfo& test_info) { argument
28 msg << "start:" << test_info.test_case_name() << "." << test_info.name();
43 virtual void OnTestEnd(const ::testing::TestInfo& test_info) { argument
45 msg << "end:" << test_info.test_case_name() << "." << test_info.name()
46 << "," << (test_info.result()->Failed() ? "failed" : "ok");
/external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
H A Dmain.cc20 virtual void OnTestStart(const ::testing::TestInfo& test_info) { argument
22 msg << "start:" << test_info.test_case_name() << "." << test_info.name();
37 virtual void OnTestEnd(const ::testing::TestInfo& test_info) { argument
39 msg << "end:" << test_info.test_case_name() << "." << test_info.name()
40 << "," << (test_info.result()->Failed() ? "failed" : "ok");
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmain.cc20 virtual void OnTestStart(const ::testing::TestInfo& test_info) { argument
22 msg << "start:" << test_info.test_case_name() << "." << test_info.name();
37 virtual void OnTestEnd(const ::testing::TestInfo& test_info) { argument
39 msg << "end:" << test_info.test_case_name() << "." << test_info.name()
40 << "," << (test_info.result()->Failed() ? "failed" : "ok");
/external/chromium_org/native_client_sdk/src/tests/sdk_util_test/
H A Dmain.cc20 virtual void OnTestStart(const ::testing::TestInfo& test_info) { argument
22 msg << "start:" << test_info.test_case_name() << "." << test_info.name();
37 virtual void OnTestEnd(const ::testing::TestInfo& test_info) { argument
39 msg << "end:" << test_info.test_case_name() << "." << test_info.name()
40 << "," << (test_info.result()->Failed() ? "failed" : "ok");
/external/chromium_org/testing/gtest/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) {
/external/protobuf/gtest/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) {
H A Dsample10_unittest.cc81 virtual void OnTestStart(const TestInfo& test_info) { argument
86 virtual void OnTestEnd(const TestInfo& test_info) { argument
/external/chromium_org/chrome/test/logging/win/
H A Dtest_log_collector.cc40 void StartSessionForTest(const testing::TestInfo& test_info);
42 void ProcessSessionForTest(const testing::TestInfo& test_info);
82 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
83 default_result_printer_->OnTestStart(test_info);
84 test_log_collector_->StartSessionForTest(test_info);
97 virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE {
98 test_log_collector_->ProcessSessionForTest(test_info);
99 default_result_printer_->OnTestEnd(test_info);
220 void TestLogCollector::StartSessionForTest(const testing::TestInfo& test_info) { argument
222 std::string log_file_name(test_info
251 ProcessSessionForTest( const testing::TestInfo& test_info) argument
[all...]
/external/chromium_org/base/test/
H A Dgtest_xml_util.cc59 void XmlUnitTestResultPrinter::OnTestStart(const testing::TestInfo& test_info) { argument
65 test_info.name(),
66 test_info.test_case_name());
70 void XmlUnitTestResultPrinter::OnTestEnd(const testing::TestInfo& test_info) { argument
74 test_info.name(),
75 static_cast<double>(test_info.result()->elapsed_time()) /
77 test_info.test_case_name());
78 if (test_info.result()->Failed())
H A Dgtest_xml_util.h32 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE;
33 virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE;
H A Dtest_suite.cc52 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
53 ASSERT_FALSE(TestSuite::IsMarkedMaybe(test_info))
66 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
70 virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE {
247 const ::testing::TestInfo* const test_info = member in class:testing
249 if (test_info) {
250 LOG(ERROR) << "Currently running: " << test_info->test_case_name() << "."
251 << test_info->name();
/external/chromium_org/chrome/browser/apps/
H A Dspeech_recognition_browsertest.cc17 const testing::TestInfo* const test_info = member in class:SpeechRecognitionTest::testing
21 if (!strcmp(test_info->name(), "SpeechFromBackgroundPage")) {
/external/chromium_org/chrome/browser/diagnostics/
H A Ddiagnostics_writer.cc224 const DiagnosticsModel::TestInfo& test_info = model->GetTest(index); local
225 bool success = (DiagnosticsModel::TEST_OK == test_info.GetResult());
227 test_info.GetName(),
228 test_info.GetTitle(),
229 test_info.GetOutcomeCode(),
230 test_info.GetAdditionalInfo());
239 const DiagnosticsModel::TestInfo& test_info = model->GetTest(index); local
240 WriteInfoLine("Finished Recovery for: " + test_info.GetTitle());
/external/chromium_org/content/test/
H A Dcontent_browser_test_test.cc25 const testing::TestInfo* const test_info = member in class:content::ContentBrowserTestSanityTest::testing
27 if (std::string(test_info->name()) == "SingleProcess")
H A Dcontent_test_suite.cc37 virtual void OnTestStart(const testing::TestInfo& test_info) OVERRIDE {
42 virtual void OnTestEnd(const testing::TestInfo& test_info) OVERRIDE {
/external/chromium_org/testing/gtest/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());
/external/gtest/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());
/external/protobuf/gtest/test/
H A Dgtest_shuffle_test_.cc87 virtual void OnTestStart(const TestInfo& test_info) { argument
88 printf("%s.%s\n", test_info.test_case_name(), test_info.name());
/external/chromium_org/net/quic/crypto/
H A Daes_128_gcm_12_decrypter_test.cc274 const TestGroupInfo& test_info = test_group_info[i]; local
296 // in |test_info| are in bits.
297 EXPECT_EQ(test_info.key_len, key.length() * 8);
298 EXPECT_EQ(test_info.iv_len, iv.length() * 8);
299 EXPECT_EQ(test_info.pt_len, ct.length() * 8);
300 EXPECT_EQ(test_info.aad_len, aad.length() * 8);
301 EXPECT_EQ(test_info.tag_len, tag.length() * 8);
303 EXPECT_EQ(test_info.pt_len, pt.length() * 8);
H A Daes_128_gcm_12_encrypter_test.cc230 const TestGroupInfo& test_info = test_group_info[i]; local
247 // in |test_info| are in bits.
248 EXPECT_EQ(test_info.key_len, key.length() * 8);
249 EXPECT_EQ(test_info.iv_len, iv.length() * 8);
250 EXPECT_EQ(test_info.pt_len, pt.length() * 8);
251 EXPECT_EQ(test_info.aad_len, aad.length() * 8);
252 EXPECT_EQ(test_info.pt_len, ct.length() * 8);
253 EXPECT_EQ(test_info.tag_len, tag.length() * 8);
/external/chromium_org/third_party/cython/src/Cython/Tests/
H A Dxmlrunner.py110 def _prepare_callback(self, test_info, target_list, verbose_str,
115 target_list.append(test_info)
127 (test_info.get_elapsed_time(), verbose_str))
184 for test_info in errors:
185 if isinstance(test_info, tuple):
186 test_info, exc_info = test_info
189 flavour, test_info.get_elapsed_time(),
190 test_info.get_description()))
192 self.stream.writeln('%s' % test_info
[all...]
/external/chromium_org/build/android/pylib/host_driven/
H A Dtest_info_collection.py119 def _AnnotationIncludesTest(test_info, annotation_filter_list):
120 """Checks whether a given test represented by test_info matches annotation.
123 test_info: TestInfo object representing the test
138 key + ':' + value, test_info.qualified_name):
141 annotation_filter, test_info.qualified_name):
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_extended_manual_interactive_uitest.cc59 const testing::TestInfo* const test_info = member in class:InstantExtendedManualTest::testing
61 ASSERT_TRUE(StartsWithASCII(test_info->name(), "MANUAL_", true) ||
62 StartsWithASCII(test_info->name(), "DISABLED_", true));

Completed in 5288 milliseconds

1234