NotExistingCoveredElementTest.php 399 B

1234567891011121314151617181920212223242526
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. class NotExistingCoveredElementTest extends TestCase
  4. {
  5. /**
  6. * @covers NotExistingClass
  7. */
  8. public function testOne()
  9. {
  10. }
  11. /**
  12. * @covers NotExistingClass::notExistingMethod
  13. */
  14. public function testTwo()
  15. {
  16. }
  17. /**
  18. * @covers NotExistingClass::<public>
  19. */
  20. public function testThree()
  21. {
  22. }
  23. }