public function testGetPathIfNotExecutedFromShopwareRootFolder()
 {
     $expectedPath = getcwd() . '/' . self::PLUGIN_NAME . '/';
     $shopwareRootDetectorStub = $this->getMock(ShopwareRootDetector::class);
     $shopwareRootDetectorStub->method('isRoot')->willReturn(false);
     $currentOutputDirectoryProvider = new CurrentOutputDirectoryProvider($shopwareRootDetectorStub, self::PLUGIN_NAME);
     $path = $currentOutputDirectoryProvider->getPath();
     $this->assertEquals($expectedPath, $path);
 }