2019-05-10 01:19:33 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests\Config;
|
|
|
|
|
|
|
|
use Psalm\Config\Creator;
|
|
|
|
|
|
|
|
class CreatorTest extends \Psalm\Tests\TestCase
|
|
|
|
{
|
2019-05-17 00:36:36 +02:00
|
|
|
public static function setUpBeforeClass() : void
|
2019-05-10 01:19:33 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-05-17 00:36:36 +02:00
|
|
|
public function setUp() : void
|
2019-05-10 01:19:33 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testDiscoverLibDirectory()
|
|
|
|
{
|
|
|
|
$lib_contents = Creator::getContents(
|
|
|
|
dirname(__DIR__, 1)
|
|
|
|
. DIRECTORY_SEPARATOR . 'fixtures'
|
|
|
|
. DIRECTORY_SEPARATOR . 'config_discovery'
|
|
|
|
. DIRECTORY_SEPARATOR . 'files_in_lib',
|
|
|
|
null,
|
|
|
|
1
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame('<?xml version="1.0"?>
|
|
|
|
<psalm
|
|
|
|
totallyTyped="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"
|
|
|
|
>
|
|
|
|
<projectFiles>
|
|
|
|
<directory name="lib" />
|
|
|
|
<ignoreFiles>
|
|
|
|
<directory name="vendor" />
|
|
|
|
</ignoreFiles>
|
|
|
|
</projectFiles>
|
|
|
|
|
|
|
|
<issueHandlers>
|
|
|
|
<LessSpecificReturnType errorLevel="info" />
|
|
|
|
</issueHandlers>
|
|
|
|
</psalm>
|
|
|
|
', $lib_contents);
|
|
|
|
}
|
|
|
|
}
|