1234567891011121314151617181920212223242526 |
- <?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()
- {
- }
- }
|