Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
assertHashGenerator example
$this
->
assertCacheBusterGenerator
(
$this
->
getUuidPathnameStrategy
(
)
)
;
}
public
function
testUuidFilename
(
)
: void
{
$this
->
assertFilenameGenerator
(
$this
->
getUuidPathnameStrategy
(
)
)
;
}
public
function
testUuidEncoding
(
)
: void
{
$this
->
assertHashGenerator
(
$this
->
getUuidPathnameStrategy
(
)
,
$this
->
getJpgWithFolder
(
)
, 8
)
;
$this
->
assertHashGenerator
(
$this
->
getUuidPathnameStrategy
(
)
,
$this
->
getJpg
(
)
, 8
)
;
$this
->
assertHashGenerator
(
$this
->
getUuidPathnameStrategy
(
)
,
$this
->
getTxt
(
)
, 8
)
;
}
public
function
testMd5CacheBuster
(
)
: void
{
$this
->
assertCacheBusterGenerator
(
$this
->
getMd5PathnameStrategy
(
)
)
;
}
public
function
testMd5Filename
(
)
: void
{