| 72 | } |
| 73 | |
| 74 | TEST(DefaultCompiler, Basic) { |
| 75 | ASSERT_OK_AND_ASSIGN(auto compiler, MakeDefaultCompilerBuilder()->Build()); |
| 76 | EXPECT_THAT(compiler->Compile("1 < 2").status(), IsOk()); |
| 77 | } |
| 78 | |
| 79 | TEST(DefaultCompiler, AddFunctionDecl) { |
| 80 | auto builder = MakeDefaultCompilerBuilder(); |
nothing calls this directly
no test coverage detected