You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ArgumentsTest.php 464B

12345678910111213141516171819
  1. <?php
  2. /*
  3. * This file is part of Twig.
  4. *
  5. * (c) Fabien Potencier
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. class Twig_Tests_Grammar_ArgumentsTest extends PHPUnit_Framework_TestCase
  11. {
  12. public function testMagicToString()
  13. {
  14. $grammar = new Twig_Extensions_Grammar_Arguments('foo');
  15. $this->assertEquals('<foo:arguments>', (string) $grammar);
  16. }
  17. }