1 | <?php |
||
12 | class TextFileTestCase extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $workspace; |
||
18 | |||
19 | /** |
||
20 | * @var Filesystem |
||
21 | */ |
||
22 | protected $filesystem; |
||
23 | |||
24 | protected function setUp() |
||
33 | |||
34 | protected function tearDown() |
||
38 | |||
39 | /** |
||
40 | * @param string $fileName |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | protected function createTestFileFromFixtures($fileName) |
||
50 | |||
51 | /** |
||
52 | * @param string $fileName |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | protected function getPathFixtureFile($fileName) |
||
60 | } |
||
61 |