| 41 | using ::testing::SizeIs; |
| 42 | |
| 43 | TEST(ExtractAndValidateRuntimeExtensionsTest, EmptyExtensions) { |
| 44 | Ast ast(Expr{}, SourceInfo{}); |
| 45 | EXPECT_THAT(ExtractAndValidateRuntimeExtensions(ast), |
| 46 | IsOkAndHolds(SizeIs(0))); |
| 47 | } |
| 48 | |
| 49 | TEST(ExtractAndValidateRuntimeExtensionsTest, FiltersNonRuntimeExtensions) { |
| 50 | SourceInfo source_info; |
nothing calls this directly
no test coverage detected