#6284 correcting alignment, removing stuff that isn't strictly needed
This commit is contained in:
parent
220dc79ebf
commit
3f09e20955
@ -11,19 +11,17 @@ final class GH6217Test extends OrmFunctionalTestCase
|
|||||||
|
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->_schemaTool->createSchema(
|
$this->_schemaTool->createSchema([
|
||||||
[
|
$this->_em->getClassMetadata(GH6217LazyEntity::class),
|
||||||
$this->_em->getClassMetadata(GH6217LazyEntity::class),
|
$this->_em->getClassMetadata(GH6217EagerEntity::class),
|
||||||
$this->_em->getClassMetadata(GH6217EagerEntity::class),
|
$this->_em->getClassMetadata(GH6217FetchedEntity::class),
|
||||||
$this->_em->getClassMetadata(GH6217FetchedEntity::class),
|
]);
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @group 6217
|
* @group 6217
|
||||||
*/
|
*/
|
||||||
public function testRetrievingCacheShouldNotThrowUndefinedIndexException()
|
public function testLoadingOfSecondLevelCacheOnEagerAssociations()
|
||||||
{
|
{
|
||||||
$user = new GH6217LazyEntity();
|
$user = new GH6217LazyEntity();
|
||||||
$category = new GH6217EagerEntity();
|
$category = new GH6217EagerEntity();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user