mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
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');
|
||
|
}
|
||
|
}
|