| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class ParserTest extends TestCase |
||
| 12 | { |
||
| 13 | /** @var Parser */ |
||
| 14 | private $parser; |
||
| 15 | |||
| 16 | protected function setUp() : void |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function tearDown() : void |
||
| 24 | { |
||
| 25 | $this->parser = null; |
||
| 26 | parent::tearDown(); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function testParseUrl() : void |
||
| 44 | } |
||
| 45 | |||
| 46 | public function testParseBadUrlThrowsInvalidArgumentException() : void |
||
| 52 | } |
||
| 53 | } |
||
| 54 |