1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-15 06:54:25 +02:00
Files
php-e107/vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php
2018-02-06 03:18:31 -06:00

27 lines
399 B
PHP

<?php
use PHPUnit\Framework\TestCase;
class NotExistingCoveredElementTest extends TestCase
{
/**
* @covers NotExistingClass
*/
public function testOne()
{
}
/**
* @covers NotExistingClass::notExistingMethod
*/
public function testTwo()
{
}
/**
* @covers NotExistingClass::<public>
*/
public function testThree()
{
}
}