( t *testing.T, manager testutil.StubSessionManager, observer testutil.StubObserver, workspaces testutil.StubWorkspaceService, store *memory.Store, dream core.DreamTrigger, )
| 122 | } |
| 123 | |
| 124 | func newHandlerFixture( |
| 125 | t *testing.T, |
| 126 | manager testutil.StubSessionManager, |
| 127 | observer testutil.StubObserver, |
| 128 | workspaces testutil.StubWorkspaceService, |
| 129 | store *memory.Store, |
| 130 | dream core.DreamTrigger, |
| 131 | ) handlerFixture { |
| 132 | return newHandlerFixtureWithAutomationAndTasks( |
| 133 | t, |
| 134 | manager, |
| 135 | observer, |
| 136 | testutil.StubAutomationManager{}, |
| 137 | testutil.StubTaskManager{}, |
| 138 | workspaces, |
| 139 | store, |
| 140 | dream, |
| 141 | ) |
| 142 | } |
| 143 | |
| 144 | func newHandlerFixtureWithAutomation( |
| 145 | t *testing.T, |
no test coverage detected