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
11use PHPUnit\Framework\TestCase;
12
13class PHP_TokenTest extends TestCase
14{
15    /**
16     * @covers PHP_Token::__construct
17     * @covers PHP_Token::__toString
18     */
19    public function testToString()
20    {
21        $this->markTestIncomplete();
22    }
23
24    /**
25     * @covers PHP_Token::__construct
26     * @covers PHP_Token::getLine
27     */
28    public function testGetLine()
29    {
30        $this->markTestIncomplete();
31    }
32}
33