/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/TestImplementorTest.php (651B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ class Framework_TestImplementorTest extends PHPUnit_Framework_TestCase { public function testSuccessfulRun() { $result = new PHPUnit_Framework_TestResult; $test = new DoubleTestCase(new Success); $test->run($result); $this->assertCount(count($test), $result); $this->assertEquals(0, $result->errorCount()); $this->assertEquals(0, $result->failureCount()); } }