| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class PathTest extends TestCase |
||
| 11 | { |
||
| 12 | public function testConstruct() : void |
||
| 16 | } |
||
| 17 | |||
| 18 | public function testGetSetPath() : void |
||
| 19 | { |
||
| 20 | $path = new Path(); |
||
| 21 | $this->assertEquals('', $path->getPath()); |
||
| 22 | $path->setPath('test'); |
||
| 23 | $this->assertEquals('test', $path->getPath()); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testGetSegments() : void |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testToString() : void |
||
| 36 | } |
||
| 37 | } |
||
| 38 |