Files
espocrm/vendor/phpunit/php-code-coverage/Tests/_files/NotExistingCoveredElementTest.php
Taras Machyshyn 417576fd5e change instance
2013-11-01 13:49:54 +02:00

25 lines
384 B
PHP
Executable File

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