| 70 | // ============================================================================ |
| 71 | |
| 72 | TEST(FunctionCallManager, RegisterCppFunctionCall_Success) { |
| 73 | FunctionCallManager mgr; |
| 74 | auto fc = std::make_shared<MockFunctionCall>("test_fn"); |
| 75 | EXPECT_TRUE(mgr.registerFunctionCall(fc)); |
| 76 | } |
| 77 | |
| 78 | TEST(FunctionCallManager, RegisterCppFunctionCall_Null_Fails) { |
| 79 | FunctionCallManager mgr; |
nothing calls this directly
no test coverage detected