/**
* This test verifies that we get the correct
* FALSE result for hasDiscount, if no discount has been set.
*
* @group promotions
*/
public function testPromotionHasDiscountNo(): void
{ $promotion =
new PromotionEntity();
static::
assertFalse($promotion->
hasDiscount());
} /**
* This test verifies that we get the correct
* FALSE result for hasDiscount, if discounts have been set.
*
* @group promotions
*/
public function testPromotionHasDiscountYes(): void
{ $discount =
new PromotionDiscountEntity();