TokenTest.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. /*
  3. * This file is part of the PHP_TokenStream package.
  4. *
  5. * (c) Sebastian Bergmann <sebastian@phpunit.de>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * Tests for the PHP_Token class.
  12. *
  13. * @package PHP_TokenStream
  14. * @subpackage Tests
  15. * @author Sebastian Bergmann <sebastian@phpunit.de>
  16. * @copyright Sebastian Bergmann <sebastian@phpunit.de>
  17. * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
  18. * @version Release: @package_version@
  19. * @link http://github.com/sebastianbergmann/php-token-stream/
  20. * @since Class available since Release 1.0.0
  21. */
  22. class PHP_TokenTest extends PHPUnit_Framework_TestCase
  23. {
  24. /**
  25. * @covers PHP_Token::__construct
  26. * @covers PHP_Token::__toString
  27. */
  28. public function testToString()
  29. {
  30. $this->markTestIncomplete();
  31. }
  32. /**
  33. * @covers PHP_Token::__construct
  34. * @covers PHP_Token::getLine
  35. */
  36. public function testGetLine()
  37. {
  38. $this->markTestIncomplete();
  39. }
  40. }