(tb testing.TB)
| 29 | } |
| 30 | |
| 31 | func newTestService(tb testing.TB) *testService { |
| 32 | tb.Helper() |
| 33 | |
| 34 | testSvc := baseservice.Init(riversharedtest.BaseServiceArchetype(tb), &testService{}) |
| 35 | testSvc.testSignals.Init(tb) |
| 36 | |
| 37 | return testSvc |
| 38 | } |
| 39 | |
| 40 | func (s *testService) Start(ctx context.Context) error { |
| 41 | ctx, shouldStart, started, stopped := s.StartInit(ctx) |
no test coverage detected
searching dependent graphs…