for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aimeos\Base\Filesystem;
class FlyNoneTest extends \PHPUnit\Framework\TestCase
{
protected function setUp() : void
if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
$this->markTestSkipped( 'Install Flysystem first' );
}
public function testGetProvider()
$object = new FlyNone( [] );
$this->assertInstanceof( \Aimeos\Base\Filesystem\Iface::class, $object );
$object->has( 'test' );