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

25 lines
384 B
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?php
class NotExistingCoveredElementTest extends PHPUnit_Framework_TestCase
{
/**
* @covers NotExistingClass
*/
public function testOne()
{
}
/**
* @covers NotExistingClass::notExistingMethod
*/
public function testTwo()
{
}
/**
* @covers NotExistingClass::<public>
*/
public function testThree()
{
}
}