Completed
Push — master ( 9a5b65...bc6c02 )
by Aimeos
05:06
created
lib/custom/tests/MW/Filesystem/FlyGridfsTest.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,39 +7,39 @@
 block discarded – undo
7 7
 {
8 8
 	protected function setUp()
9 9
 	{
10
-		if( !interface_exists( '\\League\\Flysystem\\FilesystemInterface' ) ) {
11
-			$this->markTestSkipped( 'Install Flysystem first' );
10
+		if (!interface_exists('\\League\\Flysystem\\FilesystemInterface')) {
11
+			$this->markTestSkipped('Install Flysystem first');
12 12
 		}
13 13
 	}
14 14
 
15 15
 
16 16
 	public function testGetProvider()
17 17
 	{
18
-		$object = new FlyGridfs( [] );
19
-		$this->assertInstanceof( \Aimeos\MW\Filesystem\Iface::class, $object );
18
+		$object = new FlyGridfs([]);
19
+		$this->assertInstanceof(\Aimeos\MW\Filesystem\Iface::class, $object);
20 20
 
21
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
22
-		$object->has( 'test' );
21
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
22
+		$object->has('test');
23 23
 	}
24 24
 
25 25
 
26 26
 	public function testGetProviderToken()
27 27
 	{
28
-		if( !class_exists( '\League\Flysystem\GridFS\GridFSAdapter' ) ) {
29
-			$this->markTestSkipped( 'Install Flysystem GridFS adapter' );
28
+		if (!class_exists('\League\Flysystem\GridFS\GridFSAdapter')) {
29
+			$this->markTestSkipped('Install Flysystem GridFS adapter');
30 30
 		}
31 31
 
32
-		if( !class_exists( '\MongoClient' ) ) {
33
-			$this->markTestSkipped( 'Install Mongo client extension' );
32
+		if (!class_exists('\MongoClient')) {
33
+			$this->markTestSkipped('Install Mongo client extension');
34 34
 		}
35 35
 
36 36
 		$config = array(
37 37
 			'dbname' => 'test',
38 38
 		);
39
-		$object = new FlyGridfs( $config );
40
-		$this->assertInstanceof( \Aimeos\MW\Filesystem\Iface::class, $object );
39
+		$object = new FlyGridfs($config);
40
+		$this->assertInstanceof(\Aimeos\MW\Filesystem\Iface::class, $object);
41 41
 
42
-		$this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );
43
-		$object->has( 'test' );
42
+		$this->setExpectedException('Aimeos\MW\Filesystem\Exception');
43
+		$object->has('test');
44 44
 	}
45 45
 }
Please login to merge, or discard this patch.