(self)
| 37 | |
| 38 | class TestAppHostServerInit: |
| 39 | def test_construction(self): |
| 40 | tm = FakeToolManager() |
| 41 | host = AppHostServer(tm) |
| 42 | assert host.tool_manager is tm |
| 43 | assert host._apps == {} |
| 44 | assert host._bridges == {} |
| 45 | assert host._servers == [] |
| 46 | |
| 47 | def test_get_running_apps_empty(self): |
| 48 | host = AppHostServer(FakeToolManager()) |
nothing calls this directly
no test coverage detected