mailgun-php/vendor/phpunit/php-code-coverage/Tests/_files/NotExistingCoveredElementTest.php
Travis Swientek e5163bb90b Added PHPUnit
2013-07-18 13:01:36 -05:00

25 lines
384 B
PHP

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