php-src/ext/standard/tests/aggregation/aggregation_info.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

32 lines
493 B
PHP

--TEST--
retrieving aggregation info
--POST--
--GET--
--FILE--
<?php
include "./ext/standard/tests/aggregation/aggregate.lib.php";
$obj = new simple();
aggregate($obj, 'mixin');
print_r(aggregation_info($obj));
?>
--EXPECT--
I'm alive!
Array
(
[mixin] => Array
(
[methods] => Array
(
[0] => mix_it
)
[properties] => Array
(
[0] => mix
)
)
)