Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
vendor
/
phpunit
/
php-code-coverage
/
tests
/
_files
/
Editing: CoverageNothingTest.php
<?php use PHPUnit\Framework\TestCase; class CoverageNothingTest extends TestCase { /** * @covers CoveredClass::publicMethod * @coversNothing */ public function testSomething() { $o = new CoveredClass; $o->publicMethod(); } }
Save
Cancel