1
0
mirror of synced 2025-03-06 04:46:13 +03:00

#6284 correcting alignment, removing stuff that isn't strictly needed

This commit is contained in:
Marco Pivetta 2017-08-22 21:31:01 +02:00
parent 220dc79ebf
commit 3f09e20955
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -11,19 +11,17 @@ final class GH6217Test extends OrmFunctionalTestCase
parent::setUp();
$this->_schemaTool->createSchema(
[
$this->_em->getClassMetadata(GH6217LazyEntity::class),
$this->_em->getClassMetadata(GH6217EagerEntity::class),
$this->_em->getClassMetadata(GH6217FetchedEntity::class),
]
);
$this->_schemaTool->createSchema([
$this->_em->getClassMetadata(GH6217LazyEntity::class),
$this->_em->getClassMetadata(GH6217EagerEntity::class),
$this->_em->getClassMetadata(GH6217FetchedEntity::class),
]);
}
/**
* @group 6217
*/
public function testRetrievingCacheShouldNotThrowUndefinedIndexException()
public function testLoadingOfSecondLevelCacheOnEagerAssociations()
{
$user = new GH6217LazyEntity();
$category = new GH6217EagerEntity();