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\Component\Channel\Factory;
use PhpSpec\ObjectBehavior;
use Sylius\Component\Channel\Factory\ChannelFactoryInterface;
use Sylius\Component\Channel\Model\ChannelInterface;
use Sylius\Component\Resource\Factory\FactoryInterface;
/**
* @author Arkadiusz Krakowiak <[email protected]>
final class ChannelFactorySpec extends ObjectBehavior
{
function let(FactoryInterface $defaultFactory): void
$this->beConstructedWith($defaultFactory);
}
function it_implements_channel_factory_interface(): void
$this->shouldImplement(ChannelFactoryInterface::class);
function it_creates_channel_with_name($defaultFactory, ChannelInterface $channel): void
$defaultFactory->createNew()->willReturn($channel);
$channel->setName('United States Webstore')->shouldBeCalled();
$this->createNamed('United States Webstore')->shouldReturn($channel);
function it_creates_empty_channel($defaultFactory, ChannelInterface $channel): void
$this->createNew()->shouldReturn($channel);