@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | protected function tearDown() |
| 21 | 21 | { |
| 22 | 22 | $fileSystem = new FileSystem(); |
| 23 | - $fileSystem->remove($this->getPathFixtures() . '/Success/Compile/Build'); |
|
| 23 | + $fileSystem->remove($this->getPathFixtures().'/Success/Compile/Build'); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -32,17 +32,17 @@ discard block |
||
| 32 | 32 | $this->assertEquals(0, $this->commandTester->getStatusCode()); |
| 33 | 33 | $this->assertContains('Compiling "apib" files to mock', $this->commandTester->getDisplay()); |
| 34 | 34 | $this->assertContains('Creating documentation from mock files compiled', $this->commandTester->getDisplay()); |
| 35 | - $this->assertFileExists($this->getPathFixtures() . '/Success/Compile/Build/out.apib'); |
|
| 36 | - $this->assertFileExists($this->getPathFixtures() . '/Success/Compile/Build/out.html'); |
|
| 35 | + $this->assertFileExists($this->getPathFixtures().'/Success/Compile/Build/out.apib'); |
|
| 36 | + $this->assertFileExists($this->getPathFixtures().'/Success/Compile/Build/out.html'); |
|
| 37 | 37 | |
| 38 | 38 | $this->assertContains( |
| 39 | 39 | $this->getStringJSONFileIncluded(), |
| 40 | - file_get_contents($this->getPathFixtures() . '/Success/Compile/Build/out.apib') |
|
| 40 | + file_get_contents($this->getPathFixtures().'/Success/Compile/Build/out.apib') |
|
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | 43 | $this->assertContains( |
| 44 | 44 | $this->getStringXMLFileIncluded(), |
| 45 | - file_get_contents($this->getPathFixtures() . '/Success/Compile/Build/out.apib') |
|
| 45 | + file_get_contents($this->getPathFixtures().'/Success/Compile/Build/out.apib') |
|
| 46 | 46 | ); |
| 47 | 47 | } |
| 48 | 48 | |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | $this->commandTester->execute($this->getErrorArgumentsCommand()); |
| 55 | 55 | $this->assertEquals(1, $this->commandTester->getStatusCode()); |
| 56 | 56 | $this->assertContains('There are not index files to generate mock or doc files', $this->commandTester->getDisplay()); |
| 57 | - $this->assertDirectoryNotExists($this->getPathErrorFixtures() . 'Build'); |
|
| 57 | + $this->assertDirectoryNotExists($this->getPathErrorFixtures().'Build'); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | /** |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | protected function getPathFixtures() |
| 84 | 84 | { |
| 85 | - return dirname(__DIR__) . '/Fixtures'; |
|
| 85 | + return dirname(__DIR__).'/Fixtures'; |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | protected function getPathSuccessFixtures() |
| 92 | 92 | { |
| 93 | - return $this->getPathFixtures() . '/Success'; |
|
| 93 | + return $this->getPathFixtures().'/Success'; |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | */ |
| 99 | 99 | protected function getPathErrorFixtures() |
| 100 | 100 | { |
| 101 | - return $this->getPathFixtures() . '/Error'; |
|
| 101 | + return $this->getPathFixtures().'/Error'; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | /** |