(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestHelperFunctionsNoError(t *testing.T) { |
| 74 | t.Parallel() |
| 75 | |
| 76 | s := NewIdleService(nil, nil) |
| 77 | require.NoError(t, StartAndAwaitRunning(context.Background(), s)) |
| 78 | require.NoError(t, StopAndAwaitTerminated(context.Background(), s)) |
| 79 | } |
| 80 | |
| 81 | func TestHelperFunctionsStartError(t *testing.T) { |
| 82 | t.Parallel() |
nothing calls this directly
no test coverage detected