}
// Error handler
-function test_error_handler ($errno, $errstr, $errfile, $errline, array $errcontext) {
+function tests_error_handler ($errno, $errstr, $errfile, $errline, array $errcontext) {
// Construct the message
$message = sprintf('File: %s, Line: %s, Code: %s, Message: %s',
basename($errfile),
} // END - function
// Assertion handler
-function test_assert_handler ($file, $line, $code) {
+function tests_assert_handler ($file, $line, $code) {
// Empty code?
if ($code === '') {
$code = '<em>Unknown</em>';
} // END - function
// Set error handler
-//set_error_handler('test_error_handler');
+//set_error_handler('tests_error_handler');
// Set the new handler
set_exception_handler('tests_exception_handler');
assert_options(ASSERT_WARNING , false);
assert_options(ASSERT_BAIL , true);
assert_options(ASSERT_QUIET_EVAL, false);
-assert_options(ASSERT_CALLBACK , 'test_assert_handler');
+assert_options(ASSERT_CALLBACK , 'tests_assert_handler');