Commit cdbf8c72 authored by Ilia Samsonov's avatar Ilia Samsonov Committed by Commit Bot

Add prefix to empty param tests.

googletest will no longer support empty prefix
for parameterized INSTANTIATE_TEST_SUITE_P.
Adding "All" prefix to existing empty prefix test suites.

This CL was uploaded by git cl split.

R=guidou@chromium.org

Bug: 1023677
Change-Id: Iaa74f84ea442bebf4ff838c9d7371099d0544c1e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1926941
Auto-Submit: Ilia Samsonov <isamsonov@google.com>
Reviewed-by: default avatarGuido Urdaneta <guidou@chromium.org>
Commit-Queue: Ilia Samsonov <isamsonov@google.com>
Cr-Commit-Position: refs/heads/master@{#717225}
parent 63b8566c
......@@ -374,7 +374,7 @@ TEST_P(AudioTrackRecorderTest, PauseResume) {
testing::Mock::VerifyAndClearExpectations(this);
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
AudioTrackRecorderTest,
testing::ValuesIn(kATRTestParams));
} // namespace blink
......@@ -346,7 +346,7 @@ TEST_P(MediaRecorderHandlerTest, EncodeVideoFrames) {
media_recorder_handler_ = nullptr;
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
MediaRecorderHandlerTest,
ValuesIn(kMediaRecorderTestParams));
......
......@@ -413,7 +413,7 @@ TEST_F(VideoTrackRecorderTest, ReleasesFrame) {
Mock::VerifyAndClearExpectations(this);
}
INSTANTIATE_TEST_SUITE_P(,
INSTANTIATE_TEST_SUITE_P(All,
VideoTrackRecorderTest,
::testing::Combine(ValuesIn(kTrackRecorderTestCodec),
ValuesIn(kTrackRecorderTestSize),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment