1 | <?php |
||
16 | class CurriculumVitaeInvalidArgumentExceptionTest extends \PHPUnit_Framework_TestCase |
||
17 | { |
||
18 | private $curriculumVitae; |
||
19 | |||
20 | /** |
||
21 | * @expectedException InvalidArgumentException |
||
22 | */ |
||
23 | public function testInvalidArgumentExceptionWithBadCurriculumVitaeFile() { |
||
26 | |||
27 | /** |
||
28 | * @expectedException InvalidArgumentException |
||
29 | */ |
||
30 | public function testInvalidArgumentExceptionWithNoValidXMLFile() { |
||
34 | |||
35 | /** |
||
36 | * @expectedException InvalidArgumentException |
||
37 | */ |
||
38 | public function testInvalidArgumentExceptionWithFatalErrorXMLFile() { |
||
42 | } |
||
43 |