( t *testing.T, db database.Store, ps pubsub.Pubsub, keys chatprovider.ProviderAPIKeys, clk quartz.Clock, )
| 86 | } |
| 87 | |
| 88 | func newInternalTestServerWithClock( |
| 89 | t *testing.T, |
| 90 | db database.Store, |
| 91 | ps pubsub.Pubsub, |
| 92 | keys chatprovider.ProviderAPIKeys, |
| 93 | clk quartz.Clock, |
| 94 | ) *Server { |
| 95 | return newInternalTestServerWithLoggerAndClock( |
| 96 | t, |
| 97 | db, |
| 98 | ps, |
| 99 | keys, |
| 100 | slogtest.Make(t, &slogtest.Options{IgnoreErrors: true}), |
| 101 | clk, |
| 102 | ) |
| 103 | } |
| 104 | |
| 105 | func newInternalTestServerWithLogger( |
| 106 | t *testing.T, |
no test coverage detected