1 | <?php |
||
17 | class FileTest extends \PHPUnit_Framework_TestCase |
||
18 | { |
||
19 | /** |
||
20 | * @var File |
||
21 | */ |
||
22 | protected $watcher; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | protected static $tmpFile; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public static function setUpBeforeClass() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public static function tearDownAfterClass() |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function setUp() |
||
54 | |||
55 | public function testIsActive() |
||
59 | |||
60 | public function testIsNotActive() |
||
68 | } |
||
69 |