BBnepal-Accounts/hostel/vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.php

14 lines
258 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?php
class CoverageNothingTest extends PHPUnit_Framework_TestCase
{
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething()
{
$o = new CoveredClass;
$o->publicMethod();
}
}