| 61 | }; |
| 62 | |
| 63 | TEST_F(ToolboxRuntimeHostTest, RegistersWriteRuntimeAndSettingsServices) { |
| 64 | host_ = |
| 65 | std::make_unique<PJ::ToolboxRuntimeHost>(engine_, object_store_, settings_, PJ::ToolboxRuntimeHost::Callbacks{}); |
| 66 | auto services = registered(); |
| 67 | |
| 68 | EXPECT_TRUE(services.get<PJ::sdk::ToolboxHostService>().has_value()); |
| 69 | EXPECT_TRUE(services.get<PJ::sdk::ToolboxRuntimeHostService>().has_value()); |
| 70 | EXPECT_TRUE(services.get<PJ::sdk::SettingsStoreService>().has_value()); |
| 71 | } |
| 72 | |
| 73 | TEST_F(ToolboxRuntimeHostTest, NotifyDataChangedFiresOnDataChangedCallback) { |
| 74 | int calls = 0; |
nothing calls this directly
no test coverage detected