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\UserBundle\Reloader;
use Doctrine\Common\Persistence\ObjectManager;
use PhpSpec\ObjectBehavior;
use Sylius\Bundle\UserBundle\Reloader\UserReloader;
use Sylius\Bundle\UserBundle\Reloader\UserReloaderInterface;
use Sylius\Component\User\Model\UserInterface;
/**
* @author Łukasz Chruściel <[email protected]>
final class UserReloaderSpec extends ObjectBehavior
{
function let(ObjectManager $objectManager): void
$this->beConstructedWith($objectManager);
}
function it_implements_user_reloader_interface(): void
$this->shouldImplement(UserReloaderInterface::class);
function it_reloads_user(ObjectManager $objectManager, UserInterface $user): void
$objectManager->refresh($user)->shouldBeCalled();
$this->reloadUser($user);