1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/test/PhpParser/ParserFactoryTest.php

37 lines
1.0 KiB
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 18:14:07 +02:00
class ParserFactoryTest extends \PHPUnit\Framework\TestCase
2017-04-27 18:14:07 +02:00
{
2015-07-12 22:53:04 +02:00
/** @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
2015-07-12 22:53:04 +02:00
],
[
ParserFactory::PREFER_PHP5, null,
Parser\Multiple::class
2015-07-12 22:53:04 +02:00
],
[
ParserFactory::ONLY_PHP7, null,
Parser\Php7::class
2015-07-12 22:53:04 +02:00
],
[
ParserFactory::ONLY_PHP5, $lexer,
Parser\Php5::class
2015-07-12 22:53:04 +02:00
]
];
}
2017-04-27 18:14:07 +02:00
}