Files
t404null/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php
Glitch (t404null) 25e7853992 Fixed twitter link
2022-06-25 11:33:59 +00:00

14 lines
258 B
PHP

<?php
class CoverageNothingTest extends PHPUnit_Framework_TestCase
{
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}