/vendor/phpunit/phpunit/tests/Regression/GitHub/1374/Issue1374Test.php

https://bitbucket.org/alan_cordova/api-sb-map · PHP · 21 lines · 16 code · 2 blank · 3 comment · 0 complexity · 3c49950d46659edb72a14aecb2d4fec5 MD5 · raw file

  1. <?php
  2. /**
  3. * @requires extension I_DO_NOT_EXIST
  4. */
  5. class Issue1374Test extends PHPUnit_Framework_TestCase
  6. {
  7. protected function setUp()
  8. {
  9. print __FUNCTION__;
  10. }
  11. public function testSomething()
  12. {
  13. $this->fail('This should not be reached');
  14. }
  15. protected function tearDown()
  16. {
  17. print __FUNCTION__;
  18. }
  19. }