mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
70 lines
2.0 KiB
PHP
70 lines
2.0 KiB
PHP
<?php
|
|
|
|
class PHPParser_Tests_Builder_FunctionTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function createFunctionBuilder($name) {
|
|
return new PHPParser_Builder_Function($name);
|
|
}
|
|
|
|
public function testReturnByRef() {
|
|
$node = $this->createFunctionBuilder('test')
|
|
->makeReturnByRef()
|
|
->getNode()
|
|
;
|
|
|
|
$this->assertEquals(
|
|
new PHPParser_Node_Stmt_Function('test', array(
|
|
'byRef' => true
|
|
)),
|
|
$node
|
|
);
|
|
}
|
|
|
|
public function testParams() {
|
|
$param1 = new PHPParser_Node_Param('test1');
|
|
$param2 = new PHPParser_Node_Param('test2');
|
|
$param3 = new PHPParser_Node_Param('test3');
|
|
|
|
$node = $this->createFunctionBuilder('test')
|
|
->addParam($param1)
|
|
->addParams(array($param2, $param3))
|
|
->getNode()
|
|
;
|
|
|
|
$this->assertEquals(
|
|
new PHPParser_Node_Stmt_Function('test', array(
|
|
'params' => array($param1, $param2, $param3)
|
|
)),
|
|
$node
|
|
);
|
|
}
|
|
|
|
public function testStmts() {
|
|
$stmt1 = new PHPParser_Node_Expr_Print(new PHPParser_Node_Scalar_String('test1'));
|
|
$stmt2 = new PHPParser_Node_Expr_Print(new PHPParser_Node_Scalar_String('test2'));
|
|
$stmt3 = new PHPParser_Node_Expr_Print(new PHPParser_Node_Scalar_String('test3'));
|
|
|
|
$node = $this->createFunctionBuilder('test')
|
|
->addStmt($stmt1)
|
|
->addStmts(array($stmt2, $stmt3))
|
|
->getNode()
|
|
;
|
|
|
|
$this->assertEquals(
|
|
new PHPParser_Node_Stmt_Function('test', array(
|
|
'stmts' => array($stmt1, $stmt2, $stmt3)
|
|
)),
|
|
$node
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @expectedException LogicException
|
|
* @expectedExceptionMessage Expected parameter node, got "Name"
|
|
*/
|
|
public function testInvalidParamError() {
|
|
$this->createFunctionBuilder('test')
|
|
->addParam(new PHPParser_Node_Name('foo'))
|
|
;
|
|
}
|
|
} |