| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class UnknownMessageTest extends TestCase |
||
| 9 | { |
||
| 10 | private $messageTypeId = 12345; |
||
| 11 | private $data = 'This is some test data'; |
||
| 12 | |||
| 13 | public function testDataProperty(): void |
||
| 14 | { |
||
| 15 | $this->assertSame((new UnknownMessage($this->messageTypeId, $this->data))->getData(), $this->data); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function testTypeIdProperty(): void |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testWireSizeProperty(): void |
||
| 28 |