| 13 | ) |
| 14 | |
| 15 | type schedulerControlTestStore struct { |
| 16 | *inMemoryManagerStore |
| 17 | pause SchedulerPauseState |
| 18 | activeClaimCount []int |
| 19 | summaries []storepkg.EventSummary |
| 20 | cancelAfterPause context.CancelFunc |
| 21 | requireDeadline bool |
| 22 | starvedRunCount int |
| 23 | needsAttentionRunCount int |
| 24 | } |
| 25 | |
| 26 | var _ taskPauseStore = (*schedulerControlTestStore)(nil) |
| 27 | var _ schedulerControlStore = (*schedulerControlTestStore)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected