1 | <?php |
||
18 | class FabienCrassatCurriculumVitaeExtensionExpectedExceptionTest extends \PHPUnit_Framework_TestCase |
||
19 | { |
||
20 | /** |
||
21 | * @var ContainerBuilder |
||
22 | */ |
||
23 | private $configuration; |
||
24 | private $loader; |
||
25 | |||
26 | public function __construct() |
||
31 | |||
32 | /** |
||
33 | * @expectedException \Symfony\Component\HttpKernel\Exception\NotFoundHttpException |
||
34 | */ |
||
35 | public function testBadDirectory() |
||
39 | |||
40 | /** |
||
41 | * Creates a bad configuration |
||
42 | */ |
||
43 | private function createBadConfiguration() |
||
47 | |||
48 | /** |
||
49 | * Creates a configuration |
||
50 | */ |
||
51 | private function createConfiguration($config) |
||
56 | |||
57 | /** |
||
58 | * Gets a full config |
||
59 | * |
||
60 | * @return String[] |
||
61 | */ |
||
62 | private function getBadPathToCvConfig() |
||
72 | } |
||
73 |