| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class GetPowerTest extends TestCase |
||
| 9 | { |
||
| 10 | public function testTypeIdProperty(): void |
||
| 11 | { |
||
| 12 | $this->assertSame((new GetPower)->getTypeId(), GetPower::MESSAGE_TYPE_ID); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function testWireSizeProperty(): void |
||
| 16 | { |
||
| 17 | $this->assertSame((new GetPower)->getWireSize(), GetPower::WIRE_SIZE); |
||
| 18 | } |
||
| 20 |