| 312 | } |
| 313 | |
| 314 | absl::Status TestBindLegacyMessage(absl::string_view variable, |
| 315 | const google::protobuf::Message& message, |
| 316 | google::protobuf::Arena* arena, cel::Activation& act) { |
| 317 | CelValue legacy_value = CelProtoWrapper::CreateMessage(&message, arena); |
| 318 | |
| 319 | return TestBindLegacyValue(variable, legacy_value, arena, act); |
| 320 | } |
| 321 | |
| 322 | class SelectOptimizationTest : public testing::Test { |
| 323 | public: |
no test coverage detected