Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
SqlContentEntityStorage example
->
getActiveDefinition
(
$this
->entityType->
id
(
)
)
->
willReturn
(
$this
->entityType
)
;
$this
->entityFieldManager
->
getFieldStorageDefinitions
(
$this
->entityType->
id
(
)
)
->
willReturn
(
$this
->fieldDefinitions
)
;
$this
->entityFieldManager
->
getActiveFieldStorageDefinitions
(
$this
->entityType->
id
(
)
)
->
willReturn
(
$this
->fieldDefinitions
)
;
$this
->entityStorage =
new
SqlContentEntityStorage
(
$this
->entityType,
$this
->connection,
$this
->entityFieldManager->
reveal
(
)
,
$this
->cache,
$this
->languageManager,
new
MemoryCache
(
)
,
$this
->entityTypeBundleInfo,
$this
->entityTypeManager->
reveal
(
)
)
;
$this
->entityStorage->
setModuleHandler
(
$this
->moduleHandler
)
;
}
/** * @covers ::doLoadMultiple * @covers ::buildCacheId * @covers ::getFromPersistentCache */
public
function
testLoadMultiplePersistentCached
(
)
{
$this
->
setUpModuleHandlerNoImplementations
(
)
;