PHP-Parser/test/PhpParser/ParserFactoryTest.php

28 lines
839 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
2015-07-12 22:53:04 +02:00
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. */
2017-04-27 19:14:07 +03:00
class ParserFactoryTest extends \PHPUnit\Framework\TestCase {
2015-07-12 22:53:04 +02:00
/** @dataProvider provideTestCreate */
public function testCreate($kind, $lexer, $expected) {
$this->assertInstanceOf($expected, (new ParserFactory())->create($kind, $lexer));
2015-07-12 22:53:04 +02:00
}
public function provideTestCreate() {
$lexer = new Lexer();
return [
[
ParserFactory::PREFER_PHP7, $lexer,
2022-06-06 16:45:02 +02:00
Parser\Php7::class
2015-07-12 22:53:04 +02:00
],
[
ParserFactory::ONLY_PHP7, null,
Parser\Php7::class
2015-07-12 22:53:04 +02:00
],
];
}
2017-04-27 19:14:07 +03:00
}