php-src/pear/tests/pear_error2.phpt
Ilia Alshanetsky dd56de8d1e Disable PEAR tests. These tests have too many dependcies such as
pre-installed PEAR, needing to run as root user, most tests
will fail if PEAR install directory is not inside include_path and so on.
2002-10-22 14:19:02 +00:00

26 lines
441 B
PHP

--TEST--
PEAR_Error: die mode
--SKIPIF--
skip
--FILE--
<?php // -*- C++ -*-
// Test for: PEAR.php
// Parts tested: - PEAR_Error class
// - PEAR::isError static method
// testing PEAR_Error
include dirname(__FILE__)."/../PEAR.php";
error_reporting(E_ALL);
print "mode=die: ";
$err = new PEAR_Error("test error!!\n", -42, PEAR_ERROR_DIE);
print $err->toString() . "\n";
?>
--GET--
--POST--
--EXPECT--
mode=die: test error!!