FC001
| 23 | |
| 24 | // FC001 |
| 25 | TEST_F(FunctionCallTest, FC001_RegisterFunction_ValidConfig_Succeeds) { |
| 26 | ::agenui::testing::MockPlatformFunction fn; |
| 27 | EXPECT_TRUE(engine_->registerFunction(kValidConfig, &fn)); |
| 28 | EXPECT_TRUE(engine_->unregisterFunction("myTestFn")); |
| 29 | } |
| 30 | |
| 31 | // FC002 |
| 32 | TEST_F(FunctionCallTest, FC002_RegisterFunction_InvalidJsonConfig_Fails) { |
nothing calls this directly
no test coverage detected