Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
16 | public function setUp() |
||
17 | { |
||
18 | if (!class_exists('\Twig_Environment')) { |
||
19 | $this->markTestSkipped('Twig is not installed'); |
||
20 | } |
||
21 | |||
22 | $loader = new \Twig_Loader_Filesystem(__DIR__.'/_templates'); |
||
23 | $twig = new \Twig_Environment($loader); |
||
24 | |||
25 | $this->formatter = new TwigFormatter($twig, new HttpStatus); |
||
26 | } |
||
27 | |||
51 |