class AbstractLazyCollectionTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/collections/tests/Doctrine/Tests/Common/Collections/AbstractLazyCollectionTest.php \Doctrine\Tests\Common\Collections\AbstractLazyCollectionTest
Hierarchy
- class \Doctrine\Tests\Common\Collections\AbstractLazyCollectionTest extends \Doctrine\Tests\Common\Collections\PHPUnit_Framework_TestCase
Expanded class hierarchy of AbstractLazyCollectionTest
File
- vendor/
doctrine/ collections/ tests/ Doctrine/ Tests/ Common/ Collections/ AbstractLazyCollectionTest.php, line 7
Namespace
Doctrine\Tests\Common\CollectionsView source
class AbstractLazyCollectionTest extends \PHPUnit_Framework_TestCase {
public function testLazyCollection() {
$collection = new LazyArrayCollection();
$this
->assertFalse($collection
->isInitialized());
$this
->assertCount(3, $collection);
$collection
->add('bar');
$this
->assertTrue($collection
->isInitialized());
$this
->assertCount(4, $collection);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AbstractLazyCollectionTest:: |
public | function |