Total Complexity | 5 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types = 1); |
||
8 | final class QueueBindTest extends TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @var QueueBind |
||
12 | */ |
||
13 | private $queueBind; |
||
14 | |||
15 | |||
16 | protected function setUp(): void |
||
19 | } |
||
20 | |||
21 | |||
22 | public function testGetExchange(): void |
||
25 | } |
||
26 | |||
27 | |||
28 | public function testGetRoutingKey(): void |
||
29 | { |
||
30 | self::assertSame('routingKey', $this->queueBind->getRoutingKey()); |
||
31 | } |
||
32 | |||
33 | |||
34 | public function testIsNowait(): void |
||
35 | { |
||
36 | self::assertTrue($this->queueBind->isNowait()); |
||
37 | } |
||
38 | |||
39 | |||
40 | public function testGetArguments(): void |
||
43 | } |
||
44 | |||
45 | } |
||
46 |