Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class CurriculumVitaeInvalidArgumentExceptionTest extends \PHPUnit\Framework\TestCase |
||
17 | { |
||
18 | private $curriculumVitae; |
||
19 | |||
20 | /** |
||
21 | * @expectedException InvalidArgumentException |
||
22 | */ |
||
23 | public function testInvalidArgumentExceptionWithBadCurriculumVitaeFile() { |
||
24 | $this->curriculumVitae = new CurriculumVitae('abd file'); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @expectedException InvalidArgumentException |
||
29 | */ |
||
30 | public function testInvalidArgumentExceptionWithNoValidXMLFile() { |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @expectedException InvalidArgumentException |
||
37 | */ |
||
38 | public function testInvalidArgumentExceptionWithFatalErrorXMLFile() { |
||
41 | } |
||
42 | } |
||
43 |