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:
Andrew Nacin
2013-08-07 06:38:38 +00:00
parent b43712e0f7
commit 1801ed459c
315 changed files with 40437 additions and 0 deletions

View 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 {}