TokenTest.php (1117B)
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 /** 12 * Tests for the PHP_Token class. 13 * 14 * @package PHP_TokenStream 15 * @subpackage Tests 16 * @author Sebastian Bergmann <sebastian@phpunit.de> 17 * @copyright Sebastian Bergmann <sebastian@phpunit.de> 18 * @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License 19 * @version Release: @package_version@ 20 * @link http://github.com/sebastianbergmann/php-token-stream/ 21 * @since Class available since Release 1.0.0 22 */ 23 class PHP_TokenTest extends PHPUnit_Framework_TestCase 24 { 25 /** 26 * @covers PHP_Token::__construct 27 * @covers PHP_Token::__toString 28 */ 29 public function testToString() 30 { 31 $this->markTestIncomplete(); 32 } 33 34 /** 35 * @covers PHP_Token::__construct 36 * @covers PHP_Token::getLine 37 */ 38 public function testGetLine() 39 { 40 $this->markTestIncomplete(); 41 } 42 }