Home | History | Annotate | Download | only in samples

Lines Matching refs:Types

73   // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be defined
216 // The list of types we want to test. Note that it doesn't have to be
218 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable>