()
| 130 | } |
| 131 | |
| 132 | public function testCanGetJobCountByTypes(): void |
| 133 | { |
| 134 | $this->queue->add('job-1', ['data' => 1]); |
| 135 | $this->queue->add('job-2', ['data' => 2]); |
| 136 | |
| 137 | $count = $this->queue->getJobCountByTypes('waiting'); |
| 138 | |
| 139 | $this->assertGreaterThanOrEqual(2, $count); |
| 140 | } |
| 141 | |
| 142 | public function testCanPauseAndResumeQueue(): void |
| 143 | { |
nothing calls this directly
no test coverage detected