--TEST-- Test ArrayObject::uasort() function : wrong arg count --FILE-- uasort(); } catch (BadMethodCallException $e) { echo $e->getMessage() . "\n"; } try { $ao->uasort(1,2); } catch (BadMethodCallException $e) { echo $e->getMessage() . "\n"; } ?> ===DONE=== --EXPECTF-- Function expects exactly one argument Function expects exactly one argument ===DONE===