Googletest export
Change tests to use new Test Suite API PiperOrigin-RevId: 228908894
This commit is contained in:
@@ -41,10 +41,10 @@ std::string StringParamTestSuffix(
|
||||
TEST_P(DummyTest, Dummy) {
|
||||
}
|
||||
|
||||
INSTANTIATE_TEST_CASE_P(DuplicateTestNames,
|
||||
DummyTest,
|
||||
::testing::Values("a", "b", "a", "c"),
|
||||
StringParamTestSuffix);
|
||||
INSTANTIATE_TEST_SUITE_P(DuplicateTestNames,
|
||||
DummyTest,
|
||||
::testing::Values("a", "b", "a", "c"),
|
||||
StringParamTestSuffix);
|
||||
} // namespace
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
|
||||
Reference in New Issue
Block a user