/var/www/vhosts/nabawater/vendor/phpunit/phpunit/tests/Framework
NameSizeModeActions
Constraint/-0775rm
AssertTest.php1015390664editdlrm
BaseTestListenerTest.php7190664editdlrm
ConstraintTest.php854000664editdlrm
SuiteTest.php93770664editdlrm
TestCaseTest.php212540664editdlrm
TestFailureTest.php6100664editdlrm
TestImplementorTest.php6510664editdlrm
TestListenerTest.php28090664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/phpunit/phpunit/tests/Framework/TestFailureTest.php (610B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ class Framework_TestFailureTest extends PHPUnit_Framework_TestCase { public function testToString() { $test = new self(__FUNCTION__); $exception = new PHPUnit_Framework_Exception('message'); $failure = new PHPUnit_Framework_TestFailure($test, $exception); $this->assertEquals(__METHOD__ . ': message', $failure->toString()); } }