use Shopware\Core\Installer\Finish\SystemLocker;
/**
* @internal
*
* @covers \Shopware\Core\Installer\Finish\SystemLocker
*/
class SystemLockerTest extends TestCase
{ public function testLock(): void
{ $locker =
new SystemLocker(__DIR__
);
$locker->
lock();
static::
assertFileExists(__DIR__ . '/install.lock'
);
unlink(__DIR__ . '/install.lock'
);
}}