Lines Matching refs:instantiate
1112 Finally, you can use the `INSTANTIATE_TEST_SUITE_P` macro to instantiate the
1118 For example, the following statement will instantiate tests from the `FooTest`
1142 You can instantiate a test pattern more than once, so to distinguish different
1156 The following statement will instantiate all tests from `FooTest` again, each
1172 Please note that `INSTANTIATE_TEST_SUITE_P` will instantiate *all* tests in the
1194 In the above, we define and instantiate `FooTest` in the *same* source file.
1196 other people instantiate them later. This pattern is known as *abstract tests*.
1200 pass. When someone implements the interface, they can instantiate your suite to
1211 Once they are defined, you can instantiate them by including `foo_param_test.h`,
1213 contains `foo_param_test.cc`. You can instantiate the same abstract test suite
1347 logic first and instantiate it with different type lists later. You can even
1348 instantiate it more than once in the same program.
1353 just instantiate the test suite with their type to verify that it conforms to
1390 `REGISTER_TYPED_TEST_SUITE_P` macro before you can instantiate them. The first
1399 Finally, you are free to instantiate the pattern with the types you want. If you
1401 source files and instantiate it multiple times.