NotExistingCoveredElementTest.php 384 B

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