File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/phpunit/phpunit/src/Framework
Upload
[..]
Assert/
Rename
Del
Assert.php (97.22 KB)
Edit
Rename
Del
Attributes/
Rename
Del
Constraint/
Rename
Del
DataProviderTestSuite.php (2.26 KB)
Edit
Rename
Del
Exception/
Rename
Del
ExecutionOrderDependency.php (5.11 KB)
Edit
Rename
Del
MockObject/
Rename
Del
NativeType.php (901 B)
Edit
Rename
Del
Reorderable.php (760 B)
Edit
Rename
Del
SelfDescribing.php (631 B)
Edit
Rename
Del
Test.php (482 B)
Edit
Rename
Del
TestBuilder.php (11.77 KB)
Edit
Rename
Del
TestCase.php (79.08 KB)
Edit
Rename
Del
TestRunner/
Rename
Del
TestSize/
Rename
Del
TestStatus/
Rename
Del
TestSuite.php (20.31 KB)
Edit
Rename
Del
TestSuiteIterator.php (1.94 KB)
Edit
Rename
Del
Edit: Test.php
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework; use Countable; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ interface Test extends Countable { public function run(): void; }
Simpan