(t testing.TB)
| 115 | } |
| 116 | |
| 117 | func setupModelWithConnection(t testing.TB) (*testModel, *fakeConnection, config.FolderConfiguration) { |
| 118 | t.Helper() |
| 119 | w, fcfg := newDefaultCfgWrapper(t) |
| 120 | m, fc := setupModelWithConnectionFromWrapper(t, w) |
| 121 | return m, fc, fcfg |
| 122 | } |
| 123 | |
| 124 | func setupModelWithConnectionFromWrapper(t testing.TB, w config.Wrapper) (*testModel, *fakeConnection) { |
| 125 | t.Helper() |
no test coverage detected