1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Common\Collections;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use function assert;
/**
* Tests for {@see \Doctrine\Common\Collections\AbstractLazyCollection}.
*
* @covers \Doctrine\Common\Collections\AbstractLazyCollection
*/
class AbstractLazyArrayCollectionTest extends ArrayCollectionTestCase
{
/**
* @param mixed[] $elements
*
* @return Collection<mixed>
*/
protected function buildCollection(array $elements = []): Collection
{
return new LazyArrayCollection(new ArrayCollection($elements));
}
public function testLazyCollection(): void
{
$collection = $this->buildCollection(['a', 'b', 'c']);
assert($collection instanceof LazyArrayCollection);
self::assertFalse($collection->isInitialized());
self::assertCount(3, $collection);
}
}
|