This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/tests/020-to-collection.phpt

12 lines
292 B
PHP

--TEST--
Test Collection::toCollection().
--FILE--
<?php
$collection = Collection::init(['a', 'b']);
Collection::init(['foo', 'bar'])->toCollection($collection);
if ($collection->toArray() != ['a', 'b', 'foo', 'bar']) {
echo 'Collection::toCollection() failed.', PHP_EOL;
}
?>
--EXPECT--