mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
b7e6361536
- "global" -> remove unused "use" statements - "phpunit" -> fix "@covers" comments - "phpunit" -> replace "->will($this->returnValue()" with "->willReturn()" - "UseTest.php" -> add missing namespace - "composer.json" -> use "autoload-dev" - remove -> "require_once" usage in the tests (use autoload-dev via composer.json) -> most of the changes are done automatically by "https://github.com/rectorphp/rector"
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser;
|
|
|
|
/* This test is very weak, because PHPUnit's assertEquals assertion is way too slow dealing with the
|
|
* large objects involved here. So we just do some basic instanceof tests instead. */
|
|
|
|
class ParserFactoryTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/** @dataProvider provideTestCreate */
|
|
public function testCreate($kind, $lexer, $expected) {
|
|
$this->assertInstanceOf($expected, (new ParserFactory)->create($kind, $lexer));
|
|
}
|
|
|
|
public function provideTestCreate() {
|
|
$lexer = new Lexer();
|
|
return [
|
|
[
|
|
ParserFactory::PREFER_PHP7, $lexer,
|
|
Parser\Multiple::class
|
|
],
|
|
[
|
|
ParserFactory::PREFER_PHP5, null,
|
|
Parser\Multiple::class
|
|
],
|
|
[
|
|
ParserFactory::ONLY_PHP7, null,
|
|
Parser\Php7::class
|
|
],
|
|
[
|
|
ParserFactory::ONLY_PHP5, $lexer,
|
|
Parser\Php5::class
|
|
]
|
|
];
|
|
}
|
|
}
|