Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
PromotionDiscountCollection example
public
function
testPromotionHasDiscountYes
(
)
: void
{
$discount
=
new
PromotionDiscountEntity
(
)
;
$discount
->
setId
(
'D1'
)
;
$promotion
=
new
PromotionEntity
(
)
;
$promotion
->
setDiscounts
(
new
PromotionDiscountCollection
(
[
$discount
]
)
)
;
static
::
assertTrue
(
$promotion
->
hasDiscount
(
)
)
;
}
}