MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / RegisterParameterizedTests

Method RegisterParameterizedTests

tests/gtest/gtest-all.cc:4140–4145  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

4138// and INSTANTIATE_TEST_SUITE_P into regular tests and registers those.
4139// This will be done just once during the program runtime.
4140void UnitTestImpl::RegisterParameterizedTests() {
4141 if (!parameterized_tests_registered_) {
4142 parameterized_test_registry_.RegisterTests();
4143 parameterized_tests_registered_ = true;
4144 }
4145}
4146
4147} // namespace internal
4148

Callers

nothing calls this directly

Calls 1

RegisterTestsMethod · 0.45

Tested by

no test coverage detected