| 200 | const TestCase& GetTestCase() { return std::get<0>(GetParam()); } |
| 201 | |
| 202 | absl::StatusOr<std::unique_ptr<Runtime>> ConfigureRuntime() { |
| 203 | return ConfigureRuntimeImpl(GetTestCase().reference_resolver_enabled, |
| 204 | std::get<1>(GetParam())); |
| 205 | } |
| 206 | }; |
| 207 | |
| 208 | void InitActivation(const TestCase& test_case, google::protobuf::Arena& arena, |
nothing calls this directly
no test coverage detected