(t *testing.T, cfg Config)
| 314 | var _ chatClient = (*fakeChatClient)(nil) |
| 315 | |
| 316 | func newTestRunner(t *testing.T, cfg Config) *Runner { |
| 317 | t.Helper() |
| 318 | return &Runner{client: newFakeChatClient(t), cfg: cfg} |
| 319 | } |
| 320 | |
| 321 | func newTestRunnerWithChatArchive(t *testing.T, chatID uuid.UUID, updateErr error) (*Runner, func() bool) { |
| 322 | t.Helper() |
no test coverage detected