03ffd2f83d443b6dc105eed58071d33081ace95b
[yaffs-website] / vendor / phpunit / phpunit / src / Framework / IncompleteTestError.php
1 <?php
2 /*
3  * This file is part of PHPUnit.
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  * Extension to PHPUnit_Framework_AssertionFailedError to mark the special
13  * case of an incomplete test.
14  *
15  * @since Class available since Release 2.0.0
16  */
17 class PHPUnit_Framework_IncompleteTestError extends PHPUnit_Framework_AssertionFailedError implements PHPUnit_Framework_IncompleteTest
18 {
19 }