20 lines
456 B
PHP
20 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of Twig.
|
||
|
*
|
||
|
* (c) Fabien Potencier
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
class Twig_Tests_Grammar_ExpressionTest extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testMagicToString()
|
||
|
{
|
||
|
$grammar = new Twig_Extensions_Grammar_Expression('foo');
|
||
|
$this->assertEquals('<foo>', (string) $grammar);
|
||
|
}
|
||
|
}
|