Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
8 | final class EchoResponseTest extends TestCase |
||
9 | { |
||
10 | private $payload; |
||
11 | |||
12 | protected function setUp(): void |
||
13 | { |
||
14 | $this->payload = \str_pad('', 64, 'test'); |
||
15 | } |
||
16 | |||
17 | public function testPayloadPropertyValidValues(): void |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @expectedException \DaveRandom\LibLifxLan\Exceptions\InvalidValueException |
||
24 | */ |
||
25 | public function testPayloadPropertyValueTooShort(): void |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @expectedException \DaveRandom\LibLifxLan\Exceptions\InvalidValueException |
||
32 | */ |
||
33 | public function testPayloadPropertyValueTooLong(): void |
||
34 | { |
||
35 | new EchoResponse(\str_pad('', 65, 'test')); |
||
36 | } |
||
37 | |||
38 | public function testTypeIdProperty(): void |
||
41 | } |
||
42 | |||
43 | public function testWireSizeProperty(): void |
||
48 |