| 500 | ValuesIn(createRegexCheckerParams())); |
| 501 | |
| 502 | absl::StatusOr<std::unique_ptr<Compiler>> CreateRegexExtCompiler() { |
| 503 | CEL_ASSIGN_OR_RETURN( |
| 504 | auto builder, NewCompilerBuilder(internal::GetTestingDescriptorPool())); |
| 505 | CEL_RETURN_IF_ERROR(builder->AddLibrary(StandardCheckerLibrary())); |
| 506 | CEL_RETURN_IF_ERROR(builder->AddLibrary(RegexExtCompilerLibrary())); |
| 507 | return std::move(*builder).Build(); |
| 508 | } |
| 509 | |
| 510 | class RegexExtValidatorTest : public TestWithParam<RegexCheckerTestCase> {}; |
| 511 |
nothing calls this directly
no test coverage detected