mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
26 lines
537 B
PHP
26 lines
537 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Tests\EndToEnd;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use function version_compare;
|
|
|
|
use const PHP_VERSION;
|
|
|
|
class DestructiveAutoloaderTest extends TestCase
|
|
{
|
|
use PsalmRunnerTrait;
|
|
|
|
public function testSucceedsWithEmptyFile(): void
|
|
{
|
|
if (version_compare(PHP_VERSION, '7.2.0', '<')) {
|
|
$this->markTestSkipped('Test case requires PHP 7.2.');
|
|
}
|
|
|
|
$this->runPsalm(['--no-cache'], __DIR__ . '/' . '../fixtures/DestructiveAutoloader/', true);
|
|
}
|
|
}
|