1 | <?php |
||
7 | class IOFactoryTest extends \PHPUnit_Framework_TestCase |
||
8 | { |
||
9 | /** |
||
10 | * @dataProvider providerIdentify |
||
11 | */ |
||
12 | public function testIdentify($file, $expected) |
||
17 | |||
18 | public function providerIdentify() |
||
29 | |||
30 | /** |
||
31 | * @expectedException \InvalidArgumentException |
||
32 | */ |
||
33 | public function testIdentifyNonExistingFileThrowException() |
||
37 | |||
38 | /** |
||
39 | * @expectedException \InvalidArgumentException |
||
40 | */ |
||
41 | public function testIdentifyExistingDirectoryThrowExceptions() |
||
45 | } |
||
46 |