mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-02-16 04:53:14 +03:00
25 lines
384 B
PHP
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()
|
|
{
|
|
}
|
|
}
|