| 34 | using ::testing::HasSubstr; |
| 35 | |
| 36 | absl::StatusOr<std::unique_ptr<Compiler>> StdLibCompiler() { |
| 37 | auto builder = |
| 38 | NewCompilerBuilder(internal::GetSharedTestingDescriptorPool()).value(); |
| 39 | builder->AddLibrary(StandardCompilerLibrary()).IgnoreError(); |
| 40 | return builder->Build(); |
| 41 | } |
| 42 | |
| 43 | class TimestampLiteralValidatorTest : public ::testing::Test { |
| 44 | protected: |
nothing calls this directly
no test coverage detected