mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Tests\Config;
|
|
|
|
use Psalm\Config\Creator;
|
|
use Psalm\Tests\TestCase;
|
|
|
|
use function dirname;
|
|
|
|
use const DIRECTORY_SEPARATOR;
|
|
|
|
class CreatorTest extends TestCase
|
|
{
|
|
public static function setUpBeforeClass(): void
|
|
{
|
|
}
|
|
|
|
public function setUp(): void
|
|
{
|
|
}
|
|
|
|
public function testDiscoverLibDirectory(): void
|
|
{
|
|
$lib_contents = Creator::getContents(
|
|
dirname(__DIR__, 1)
|
|
. DIRECTORY_SEPARATOR . 'fixtures'
|
|
. DIRECTORY_SEPARATOR . 'config_discovery'
|
|
. DIRECTORY_SEPARATOR . 'files_in_lib',
|
|
null,
|
|
1,
|
|
'vendor',
|
|
);
|
|
|
|
$this->assertSame('<?xml version="1.0"?>
|
|
<psalm
|
|
errorLevel="1"
|
|
resolveFromConfigFile="true"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="https://getpsalm.org/schema/config"
|
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
|
findUnusedBaselineEntry="true"
|
|
>
|
|
<projectFiles>
|
|
<directory name="lib" />
|
|
<ignoreFiles>
|
|
<directory name="vendor" />
|
|
</ignoreFiles>
|
|
</projectFiles>
|
|
</psalm>
|
|
', $lib_contents);
|
|
}
|
|
}
|