forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SH tests] Move DataDrivenTest to reusable location
DataDrivenTest was initially created for autofill feature but it is generic enough that can be reused by different features. In order to reuse it for shared highlighting, move it out of autofill/ dir to testing/ dir. Bug: 1263185 Change-Id: I2adb40d880fc6eac6affe39601237b9068378bc0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3242864 Commit-Queue: Gayane Petrosyan <gayane@google.com> Reviewed-by: Olivier Robin <olivierrobin@chromium.org> Reviewed-by: Dominic Battré <battre@chromium.org> Reviewed-by: Dirk Pranke <dpranke@google.com> Reviewed-by: sebsg <sebsg@chromium.org> Cr-Commit-Position: refs/heads/main@{#938382}
- Loading branch information
Gayane Petrosyan
authored and
Chromium LUCI CQ
committed
Nov 4, 2021
1 parent
1c54d1a
commit 945148b
Showing
10 changed files
with
86 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright 2021 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
static_library("data_driven_testing") { | ||
testonly = true | ||
|
||
sources = [ | ||
"data_driven_test.cc", | ||
"data_driven_test.h", | ||
] | ||
|
||
deps = [ | ||
"//base", | ||
"//testing/gtest", | ||
"//third_party/re2", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
file://components/autofill/OWNERS | ||
file://components/shared_highlighting/OWNERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters