Paragonik/paragonik-backend/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php
2019-12-08 20:39:40 +01:00

16 lines
273 B
PHP

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