| 1066 | : type_provider_(cel::internal::GetTestingDescriptorPool()) {} |
| 1067 | |
| 1068 | cel::Value TestWrapMessage(const google::protobuf::Message* message) { |
| 1069 | CelValue value = CelProtoWrapper::CreateMessage(message, &arena_); |
| 1070 | auto result = cel::interop_internal::FromLegacyValue(&arena_, value); |
| 1071 | ABSL_DCHECK_OK(result.status()); |
| 1072 | return std::move(result).value(); |
| 1073 | } |
| 1074 | |
| 1075 | std::vector<std::string> AttributeStrings(const UnknownValue& v) { |
| 1076 | std::vector<std::string> result; |
nothing calls this directly
no test coverage detected