OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
283 | 283 |
284 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, | 284 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
285 MAYBE_DataDrivenHeuristics(22)) { | 285 MAYBE_DataDrivenHeuristics(22)) { |
286 const base::FilePath::CharType kFileNamePattern[] = | 286 const base::FilePath::CharType kFileNamePattern[] = |
287 FILE_PATH_LITERAL("22_*.html"); | 287 FILE_PATH_LITERAL("22_*.html"); |
288 RunDataDrivenTest(GetInputDirectory(kTestName), | 288 RunDataDrivenTest(GetInputDirectory(kTestName), |
289 GetOutputDirectory(kTestName), | 289 GetOutputDirectory(kTestName), |
290 kFileNamePattern); | 290 kFileNamePattern); |
291 } | 291 } |
292 | 292 |
| 293 IN_PROC_BROWSER_TEST_F(FormStructureBrowserTest, |
| 294 MAYBE_DataDrivenHeuristics(23)) { |
| 295 const base::FilePath::CharType kFileNamePattern[] = |
| 296 FILE_PATH_LITERAL("23_*.html"); |
| 297 RunDataDrivenTest(GetInputDirectory(kTestName), |
| 298 GetOutputDirectory(kTestName), |
| 299 kFileNamePattern); |
| 300 } |
| 301 |
293 } // namespace autofill | 302 } // namespace autofill |
OLD | NEW |