TokenTest.php 659 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /*
  3. * This file is part of php-token-stream.
  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. use PHPUnit\Framework\TestCase;
  11. class PHP_TokenTest extends TestCase
  12. {
  13. /**
  14. * @covers PHP_Token::__construct
  15. * @covers PHP_Token::__toString
  16. */
  17. public function testToString()
  18. {
  19. $this->markTestIncomplete();
  20. }
  21. /**
  22. * @covers PHP_Token::__construct
  23. * @covers PHP_Token::getLine
  24. */
  25. public function testGetLine()
  26. {
  27. $this->markTestIncomplete();
  28. }
  29. }