Googletest export

Change remaining samples to use new Test Suite API

PiperOrigin-RevId: 229231566
This commit is contained in:
misterg
2019-01-14 15:24:13 -05:00
committed by Gennadiy Civil
parent 9acd065a90
commit eb9225ce36
3 changed files with 11 additions and 12 deletions

View File

@@ -148,8 +148,7 @@ TEST_P(PrimeTableTest, CanGetNextPrime) {
// will put some of the tested numbers beyond the capability of the
// PrecalcPrimeTable instance and some inside it (10). Combine will produce all
// possible combinations.
INSTANTIATE_TEST_CASE_P(MeaningfulTestParameters,
PrimeTableTest,
Combine(Bool(), Values(1, 10)));
INSTANTIATE_TEST_SUITE_P(MeaningfulTestParameters, PrimeTableTest,
Combine(Bool(), Values(1, 10)));
} // namespace