(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestNewSchedulerTask(t *testing.T) { |
| 13 | _, err := CreateSchedulerTask(nil) |
| 14 | assert.Error(t, err) |
| 15 | } |
| 16 | |
| 17 | func TestNewSchedulerTask_WithLocation(t *testing.T) { |
| 18 | _, err := CreateSchedulerTask(func(ctx context.Context) { |
nothing calls this directly
no test coverage detected