More SQL command (drop table, drop database)
delete, select & insert upgraded More utility function (node to array, arrayToNode) XMLDB special move command PHP Unit Test
This commit is contained in:
96
simpletest/extensions/phpunit_test_case.php
Normal file
96
simpletest/extensions/phpunit_test_case.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/**
|
||||
* adapter for SimpleTest to use PHPUnit test cases
|
||||
* @package SimpleTest
|
||||
* @subpackage Extensions
|
||||
* @version $Id: phpunit_test_case.php 1530 2007-06-04 23:35:45Z lastcraft $
|
||||
*/
|
||||
|
||||
/**#@+
|
||||
* include SimpleTest files
|
||||
*/
|
||||
require_once(dirname(__FILE__) . '/../unit_tester.php');
|
||||
require_once(dirname(__FILE__) . '/../expectation.php');
|
||||
/**#@-*/
|
||||
|
||||
/**
|
||||
* Adapter for sourceforge PHPUnit test case to allow
|
||||
* legacy test cases to be used with SimpleTest.
|
||||
* @package SimpleTest
|
||||
* @subpackage Extensions
|
||||
*/
|
||||
class TestCase extends SimpleTestCase {
|
||||
|
||||
/**
|
||||
* Constructor. Sets the test name.
|
||||
* @param $label Test name to display.
|
||||
* @public
|
||||
*/
|
||||
function TestCase($label = false) {
|
||||
$this->SimpleTestCase($label);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends pass if the test condition resolves true,
|
||||
* a fail otherwise.
|
||||
* @param $condition Condition to test true.
|
||||
* @param $message Message to display.
|
||||
* @public
|
||||
*/
|
||||
function assert($condition, $message = false) {
|
||||
parent::assert(new TrueExpectation(), $condition, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Will test straight equality if set to loose
|
||||
* typing, or identity if not.
|
||||
* @param $first First value.
|
||||
* @param $second Comparison value.
|
||||
* @param $message Message to display.
|
||||
* @public
|
||||
*/
|
||||
function assertEquals($first, $second, $message = false) {
|
||||
parent::assert(new EqualExpectation($first), $second, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Simple string equality.
|
||||
* @param $first First value.
|
||||
* @param $second Comparison value.
|
||||
* @param $message Message to display.
|
||||
* @public
|
||||
*/
|
||||
function assertEqualsMultilineStrings($first, $second, $message = false) {
|
||||
parent::assert(new EqualExpectation($first), $second, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests a regex match.
|
||||
* @param $pattern Regex to match.
|
||||
* @param $subject String to search in.
|
||||
* @param $message Message to display.
|
||||
* @public
|
||||
*/
|
||||
function assertRegexp($pattern, $subject, $message = false) {
|
||||
parent::assert(new PatternExpectation($pattern), $subject, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends an error which we interpret as a fail
|
||||
* with a different message for compatibility.
|
||||
* @param $message Message to display.
|
||||
* @public
|
||||
*/
|
||||
function error($message) {
|
||||
parent::fail("Error triggered [$message]");
|
||||
}
|
||||
|
||||
/**
|
||||
* Accessor for name.
|
||||
* @public
|
||||
*/
|
||||
function name() {
|
||||
return $this->getLabel();
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user