xTestException.php 253 B

123456789101112
  1. <?php
  2. namespace mindplay\test\lib;
  3. /**
  4. * The xTest::fail() method throws and catches this exception, in order to
  5. * interrupt the execution of a failed test.
  6. */
  7. class xTestException extends \Exception
  8. {
  9. const FAIL = 0;
  10. const PHP_ERROR = 1;
  11. }