作者:tahermarko
项目:Transpor
protected function setUp()
{
$this->dispatcher = $this->getMock('Symfony\\Component\\EventDispatcher\\EventDispatcherInterface');
$this->factory = $this->getMock('Symfony\\Component\\Form\\FormFactoryInterface');
$this->serverParams = $this->getMock('Symfony\\Component\\Form\\Extension\\Validator\\Util\\ServerParams', array('getNormalizedIniPostMaxSize', 'getContentLength'));
parent::setUp();
}
作者:makhloufi-louni
项目:tuto_symfon
protected function setUp()
{
$this->em = DoctrineTestHelper::createTestEntityManager();
$this->registry = $this->createRegistryMock($this->em);
$this->createSchema($this->em);
parent::setUp();
}
作者:Herriniain
项目:iVarotr
protected function setUp()
{
parent::setUp();
$this->image = __DIR__ . '/Fixtures/test.gif';
$this->imageLandscape = __DIR__ . '/Fixtures/test_landscape.gif';
$this->imagePortrait = __DIR__ . '/Fixtures/test_portrait.gif';
}
作者:JosephCrandall4
项目:assistance.ne
protected function setUp()
{
$user = $this->createUser();
$this->securityContext = $this->createSecurityContext($user);
$this->encoder = $this->createPasswordEncoder();
$this->encoderFactory = $this->createEncoderFactory($this->encoder);
parent::setUp();
}
作者:BusinessCookie
项目:CoffeeMachineProjec
protected function setUp()
{
$user = $this->createUser();
$this->tokenStorage = $this->createTokenStorage($user);
$this->encoder = $this->createPasswordEncoder();
$this->encoderFactory = $this->createEncoderFactory($this->encoder);
parent::setUp();
}
作者:symfon
项目:symfon
protected function setUp()
{
$this->dispatcher = $this->getMockBuilder('Symfony\Component\EventDispatcher\EventDispatcherInterface')->getMock();
$this->factory = $this->getMockBuilder('Symfony\Component\Form\FormFactoryInterface')->getMock();
$this->serverParams = $this->getMockBuilder('Symfony\Component\Form\Extension\Validator\Util\ServerParams')->setMethods(array('getNormalizedIniPostMaxSize', 'getContentLength'))->getMock();
parent::setUp();
}
作者:symfon
项目:symfon
protected function setUp()
{
$this->repositoryFactory = new TestRepositoryFactory();
$config = DoctrineTestHelper::createTestConfiguration();
$config->setRepositoryFactory($this->repositoryFactory);
$this->em = DoctrineTestHelper::createTestEntityManager($config);
$this->registry = $this->createRegistryMock($this->em);
$this->createSchema($this->em);
parent::setUp();
}
作者:thomasmodenei
项目:Sententiaregu
protected function createContext()
{
$context = parent::createContext();
$validator = $context->getValidator();
/** @var \PHPUnit_Framework_MockObject_MockObject $contextualValidator */
$contextualValidator = $validator->inContext($context);
$contextualValidator->expects($this->any())->method('validate')->will($this->returnCallback(function ($value, UniqueProperty $constraint) use($context) {
$context->buildViolation($constraint->message)->setParameter('%property%', $constraint->field)->setParameter('%entity%', $constraint->entity)->setParameter('%value%', $value)->setCode(UniqueProperty::NON_UNIQUE_PROPERTY)->addViolation();
}));
return $context;
}
作者:ABaldwinHunte
项目:symfony-clon
protected function tearDown()
{
parent::tearDown();
if (is_resource($this->file)) {
fclose($this->file);
}
if (file_exists($this->path)) {
unlink($this->path);
}
$this->path = null;
$this->file = null;
}
作者:sententiaregu
项目:sententiaregu
/**
* {@inheritdoc}
*/
protected function createContext()
{
$context = parent::createContext();
$validator = $context->getValidator();
/** @var \PHPUnit_Framework_MockObject_MockObject $contextualValidator */
$contextualValidator = $validator->inContext($context);
$contextualValidator->expects($this->any())->method('validate')->will($this->returnCallback(function ($value, Choice $choice) use($context) {
if (!in_array($value, $choice->choices, true)) {
$context->buildViolation($choice->message)->setParameter('{{ value }}', $value)->setCode(Choice::NO_SUCH_CHOICE_ERROR)->addViolation();
}
}));
return $context;
}
作者:raphael-thibierg
项目:ProgWebServerProjec
protected function setUp()
{
IntlTestHelper::requireFullIntl($this);
parent::setUp();
}
作者:symfony-cm
项目:routing-bundl
protected function setUp()
{
$this->controllerResolver = $this->getMock('Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface');
$this->templating = $this->getMock('Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface');
parent::setUp();
}