| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class SetLocationTest extends TestCase |
||
| 12 | { |
||
| 13 | private $location; |
||
| 14 | |||
| 15 | protected function setUp(): void |
||
| 16 | { |
||
| 17 | $this->location = new Location(Uuid::getFactory()->uuid4(), new Label('Test'), new \DateTime); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testLocationProperty(): void |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testTypeIdProperty(): void |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testWireSizeProperty(): void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |