| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function testArgumentsInterpret() |
||
| 12 | { |
||
| 13 | $interpretedArguments = EntityArgumentsInterpreter::interpretArguments(['x-queue-type' => 'quorum']); |
||
| 14 | $this->assertInstanceOf(AMQPTable::class, $interpretedArguments); |
||
| 15 | $this->assertEquals( |
||
| 16 | ['x-queue-type' => [14 /* represent longstring*/, 'quorum']], |
||
| 17 | [$interpretedArguments->key() => $interpretedArguments->current()] |
||
| 18 | ); |
||
| 29 |