for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace spec\Sylius\Bundle\AdminBundle\Event;
use Knp\Menu\FactoryInterface;
use Knp\Menu\ItemInterface;
use PhpSpec\ObjectBehavior;
use Sylius\Bundle\UiBundle\Menu\Event\MenuBuilderEvent;
use Sylius\Component\Core\Model\PromotionInterface;
final class PromotionMenuBuilderEventSpec extends ObjectBehavior
{
function let(FactoryInterface $factory, ItemInterface $menu, PromotionInterface $promotion): void
$this->beConstructedWith($factory, $menu, $promotion);
}
function it_is_a_manage_menu_builder_event(): void
$this->shouldHaveType(MenuBuilderEvent::class);
function it_has_a_promotion(PromotionInterface $promotion): void
$this->getPromotion()->shouldReturn($promotion);