php-src/pear/tests/PEAR.t
Stig Bakken def1424b12 @Added XML_Parser class in PEAR (Stig)
@Added "make test" target in pear/ and added some regression tests (Stig)
Also fixed a bug in the PEAR class that was discovered when testing :-)
2000-07-30 17:41:31 +00:00

17 lines
243 B
C++

<?php // -*- C++ -*-
require_once "PEAR.php";
class __TestPEAR1 extends PEAR {
function __TestPEAR1() {
$this->_debug = true;
$this->PEAR();
}
}
print "test class __TestPEAR1\n";
$o = new __TestPEAR1;
var_dump(get_class($o));
?>