1 | <?php |
||
12 | class ConfigFileScriptCacheTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | /** |
||
15 | * @var ConfigFileScriptCache |
||
16 | */ |
||
17 | protected $cache; |
||
18 | |||
19 | /** |
||
20 | * @var Filesystem |
||
21 | */ |
||
22 | protected $fs; |
||
23 | protected $cacheDir; |
||
24 | |||
25 | /** |
||
26 | * Set up the test |
||
27 | */ |
||
28 | 2 | public function setUp() |
|
38 | |||
39 | /** |
||
40 | * Test instance |
||
41 | */ |
||
42 | 1 | public function testInstance() |
|
46 | |||
47 | /** |
||
48 | * Test set, get and clear |
||
49 | */ |
||
50 | 1 | public function testSetGetClear() |
|
64 | |||
65 | /** |
||
66 | * Tears down the fixture, for example, close a network connection. |
||
67 | * This method is called after a test is executed. |
||
68 | */ |
||
69 | 2 | protected function tearDown() |
|
77 | } |
||
78 |