| 107 | } |
| 108 | |
| 109 | const google::protobuf::DescriptorPool* GetDescriptorPool(const CelTestContext& context) { |
| 110 | return context.cel_expression_builder() != nullptr |
| 111 | ? google::protobuf::DescriptorPool::generated_pool() |
| 112 | : context.runtime()->GetDescriptorPool(); |
| 113 | } |
| 114 | |
| 115 | google::protobuf::MessageFactory* GetMessageFactory(const CelTestContext& context) { |
| 116 | return context.cel_expression_builder() != nullptr |
no test coverage detected