php-src/ext/standard/tests/aggregation/aggregate.phpt
Derick Rethans 39225a22b8 - Fix tests to work with CLI
#- Not totally done, but this makes it a lot better
2002-03-05 09:00:56 +00:00

21 lines
292 B
PHP

--TEST--
aggregating everything
--POST--
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
$obj = new simple();
aggregate($obj, 'helper');
$obj->do_this();
$obj->do_that();
print $obj->our_prop;
?>
--EXPECT--
I'm alive!
I'm helping!
I'm aggregating!
****