Files
c-cms-legacy/vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php
Mathieu Lagace 5fa3c85b97 Include Vendor
2018-06-27 20:31:54 -04: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()
{
}
}