This method expands all parameterized tests registered with macros TEST_P and INSTANTIATE_TEST_SUITE_P into regular tests and registers those. This will be done just once during the program runtime.
| 4138 | // and INSTANTIATE_TEST_SUITE_P into regular tests and registers those. |
| 4139 | // This will be done just once during the program runtime. |
| 4140 | void UnitTestImpl::RegisterParameterizedTests() { |
| 4141 | if (!parameterized_tests_registered_) { |
| 4142 | parameterized_test_registry_.RegisterTests(); |
| 4143 | parameterized_tests_registered_ = true; |
| 4144 | } |
| 4145 | } |
| 4146 | |
| 4147 | } // namespace internal |
| 4148 |
nothing calls this directly
no test coverage detected