Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | public function itWarmsUpCache() |
||
39 | { |
||
40 | $this->assertFalse(file_exists($this->cacheDir)); |
||
41 | |||
42 | self::bootKernel(); |
||
43 | |||
44 | $this->assertTrue(file_exists($this->cacheDir.'/aspect/_proxies/Application/Main.php')); |
||
45 | $this->assertTrue(file_exists($this->cacheDir.'/aspect/Application/Main.php')); |
||
46 | |||
47 | $reflection = new \ReflectionClass(Main::class); |
||
48 | $this->assertTrue($reflection->implementsInterface(Proxy::class)); |
||
49 | } |
||
50 | } |
||
51 |