CoverageNothingTest.php in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/phpunit/php-code-coverage/tests/_files/CoverageNothingTest.phpView source
<?php
class CoverageNothingTest extends PHPUnit_Framework_TestCase {
/**
* @covers CoveredClass::publicMethod
* @coversNothing
*/
public function testSomething() {
$o = new CoveredClass();
$o
->publicMethod();
}
}
Classes
Name | Description |
---|---|
CoverageNothingTest |