Files
Leitgedanken/html2pdf-master/vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php
aschwarz e2f1846f03 html2pdf
2023-05-12 12:27:19 +02:00

25 lines
384 B
PHP

<?php
class NotExistingCoveredElementTest extends PHPUnit_Framework_TestCase
{
/**
* @covers NotExistingClass
*/
public function testOne()
{
}
/**
* @covers NotExistingClass::notExistingMethod
*/
public function testTwo()
{
}
/**
* @covers NotExistingClass::<public>
*/
public function testThree()
{
}
}