gnu-social/vendor/phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php

27 lines
399 B
PHP
Raw Normal View History

2020-08-08 07:42:38 +09:00
<?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()
{
}
}