| 112 | }; |
| 113 | |
| 114 | TEST_F(RuntimeExtensionRegistryTest, SpecificExtensionVersion) { |
| 115 | EXPECT_THAT(Run("hello_extension", 1, "hello('world')"), |
| 116 | IsOkAndHolds(StringValueIs("Hello, old world!"))); |
| 117 | } |
| 118 | |
| 119 | TEST_F(RuntimeExtensionRegistryTest, LatestExtensionVersion) { |
| 120 | EXPECT_THAT(Run("hello_extension_alias", RuntimeExtensionRegistry::kLatest, |
nothing calls this directly
no test coverage detected