| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class NullDriverTest extends TestCase |
||
| 11 | { |
||
| 12 | protected function setUp(): void |
||
| 17 | } |
||
| 18 | |||
| 19 | public function testJobShouldBePushed(): void |
||
| 20 | { |
||
| 21 | $id = $this->queue->push('foo', ['foo' => 'bar']); |
||
| 22 | $this->assertNotNull($id); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testJobObjectShouldBePushed(): void |
||
| 32 | } |
||
| 33 | |||
| 34 | public function testJobCallableShouldBePushed(): void |
||
| 44 |