mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
81e53ce0ff
This changset also adds unit tests for Comments and adds a way to test the pretty printer.
26 lines
811 B
PHP
26 lines
811 B
PHP
<?php
|
|
|
|
require_once dirname(__FILE__) . '/CodeTestAbstract.php';
|
|
|
|
class PHPParser_Tests_PrettyPrinterTest extends PHPParser_Tests_CodeTestAbstract
|
|
{
|
|
/**
|
|
* @dataProvider provideTestPrettyPrint
|
|
* @covers PHPParser_PrettyPrinter_Zend<extended>
|
|
*/
|
|
public function testPrettyPrint($name, $code, $dump) {
|
|
$parser = new PHPParser_Parser(new PHPParser_Lexer_Emulative);
|
|
$prettyPrinter = new PHPParser_PrettyPrinter_Zend;
|
|
|
|
$stmts = $parser->parse($code);
|
|
$this->assertEquals(
|
|
$this->canonicalize($dump),
|
|
$this->canonicalize($prettyPrinter->prettyPrint($stmts)),
|
|
$name
|
|
);
|
|
}
|
|
|
|
public function provideTestPrettyPrint() {
|
|
return $this->getTests(dirname(__FILE__) . '/../../code/prettyPrinter', 'test');
|
|
}
|
|
} |