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.
*/
namespace spec\Sylius\Component\Core\Payment;
use PhpSpec\ObjectBehavior;
use Sylius\Component\Core\Model\OrderInterface;
use Sylius\Component\Core\Model\PaymentInterface;
use Sylius\Component\Core\Payment\InvoiceNumberGeneratorInterface;
use Sylius\Component\Core\Payment\RandomInvoiceNumberGenerator;
/**
* @author Arkadiusz Krakowiak <[email protected]>
final class RandomInvoiceNumberGeneratorSpec extends ObjectBehavior
{
public function it_is_initializable()
$this->shouldHaveType(RandomInvoiceNumberGenerator::class);
}
public function it_is_an_invoice_number_generator()
$this->shouldImplement(InvoiceNumberGeneratorInterface::class);
public function it_generates_a_random_invoice_number(OrderInterface $order, PaymentInterface $payment)
$this->generate($order, $payment)->shouldBeString();