Home | History | Annotate | Download | only in test

Lines Matching refs:Combine

66 using ::testing::Combine;
462 // Tests that Combine() with two parameters generates the expected sequence.
467 Combine(Values(foo, bar), Values(3, 4));
475 // Tests that Combine() with three parameters generates the expected sequence.
477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
488 // Tests that the Combine() with the first parameter generating a single value
492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
499 // Tests that the Combine() with the second parameter generating a single value
503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
511 // Combine() produces an empty sequence, too.
513 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0),
519 // Combine() produces an empty sequence, too.
521 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
526 // Edge case. Tests that combine works with the maximum number
532 int, int> > gen = Combine(Values(foo, bar),