Home | History | Annotate | Download | only in test

Lines Matching refs:Combine

64 using ::testing::Combine;
430 // Tests that Combine() with two parameters generates the expected sequence.
435 Combine(Values(foo, bar), Values(3, 4));
443 // Tests that Combine() with three parameters generates the expected sequence.
445 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
456 // Tests that the Combine() with the first parameter generating a single value
460 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
467 // Tests that the Combine() with the second parameter generating a single value
471 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
479 // Combine() produces an empty sequence, too.
481 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0),
487 // Combine() produces an empty sequence, too.
489 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
494 // Edge case. Tests that combine works with the maximum number
500 int, int> > gen = Combine(Values(foo, bar),