mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Initial import of unit-tests repository into develop.svn.wordpress.org.
Imported from https://unit-tests.svn.wordpress.org/trunk@1337 see #24976. git-svn-id: https://develop.svn.wordpress.org/trunk@25002 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
33
tests/includes/exceptions.php
Normal file
33
tests/includes/exceptions.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
class WP_Tests_Exception extends PHPUnit_Framework_Exception {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* General exception for wp_die()
|
||||
*/
|
||||
class WPDieException extends Exception {}
|
||||
|
||||
/**
|
||||
* Exception for cases of wp_die(), for ajax tests.
|
||||
* This means there was an error (no output, and a call to wp_die)
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Unit Tests
|
||||
* @since 3.4.0
|
||||
*/
|
||||
class WPAjaxDieStopException extends WPDieException {}
|
||||
|
||||
/**
|
||||
* Exception for cases of wp_die(), for ajax tests.
|
||||
* This means execution of the ajax function should be halted, but the unit
|
||||
* test can continue. The function finished normally and there was not an
|
||||
* error (output happened, but wp_die was called to end execution) This is
|
||||
* used with WP_Ajax_Response::send
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Unit Tests
|
||||
* @since 3.4.0
|
||||
*/
|
||||
class WPAjaxDieContinueException extends WPDieException {}
|
||||
Reference in New Issue
Block a user