| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 6 | class FlyMemoryTest extends \PHPUnit\Framework\TestCase |
||
| 7 | { |
||
| 8 | protected function setUp() : void |
||
| 9 | { |
||
| 10 | if( !class_exists( '\\League\\Flysystem\\Filesystem' ) ) { |
||
| 11 | $this->markTestSkipped( 'Install Flysystem first' ); |
||
| 12 | } |
||
| 13 | |||
| 14 | if( !class_exists( '\League\Flysystem\InMemory\InMemoryFilesystemAdapter' ) ) { |
||
| 15 | $this->markTestSkipped( 'Install Flysystem memory adapter' ); |
||
| 16 | } |
||
| 17 | } |
||
| 18 | |||
| 19 | |||
| 20 | public function testGetProvider() |
||
| 26 | } |
||
| 27 | } |
||
| 28 |