c3f5dcc7707e2bcec9c2e85f38550b7633305fa6
[yaffs-website] / vendor / phpunit / phpunit / src / Framework / OutputError.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 a test that printed output.
14  *
15  * @since Class available since Release 3.6.0
16  */
17 class PHPUnit_Framework_OutputError extends PHPUnit_Framework_AssertionFailedError
18 {
19 }