当前位置: 首页>>代码示例>>PHP>>正文


PHP Constraints\AbstractConstraintValidatorTest类代码示例

本文整理汇总了PHP中Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest的典型用法代码示例。如果您正苦于以下问题:PHP AbstractConstraintValidatorTest类的具体用法?PHP AbstractConstraintValidatorTest怎么用?PHP AbstractConstraintValidatorTest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了AbstractConstraintValidatorTest类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setUp

 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();
 }
开发者ID:tahermarkos,项目名称:Transport,代码行数:7,代码来源:FormValidatorTest.php

示例2: setUp

 protected function setUp()
 {
     $this->em = DoctrineTestHelper::createTestEntityManager();
     $this->registry = $this->createRegistryMock($this->em);
     $this->createSchema($this->em);
     parent::setUp();
 }
开发者ID:makhloufi-lounis,项目名称:tuto_symfony,代码行数:7,代码来源:UniqueEntityValidatorTest.php

示例3: setUp

 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';
 }
开发者ID:Herriniaina,项目名称:iVarotra,代码行数:7,代码来源:ImageValidatorTest.php

示例4: setUp

 protected function setUp()
 {
     $user = $this->createUser();
     $this->securityContext = $this->createSecurityContext($user);
     $this->encoder = $this->createPasswordEncoder();
     $this->encoderFactory = $this->createEncoderFactory($this->encoder);
     parent::setUp();
 }
开发者ID:JosephCrandall44,项目名称:assistance.net,代码行数:8,代码来源:UserPasswordValidatorTest.php

示例5: setUp

 protected function setUp()
 {
     $user = $this->createUser();
     $this->tokenStorage = $this->createTokenStorage($user);
     $this->encoder = $this->createPasswordEncoder();
     $this->encoderFactory = $this->createEncoderFactory($this->encoder);
     parent::setUp();
 }
开发者ID:BusinessCookies,项目名称:CoffeeMachineProject,代码行数:8,代码来源:UserPasswordValidatorTest.php

示例6: setUp

    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();
    }
开发者ID:symfony,项目名称:symfony,代码行数:8,代码来源:FormValidatorTest.php

示例7: setUp

 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();
 }
开发者ID:symfony,项目名称:symfony,代码行数:10,代码来源:UniqueEntityValidatorTest.php

示例8: createContext

 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;
 }
开发者ID:thomasmodeneis,项目名称:Sententiaregum,代码行数:11,代码来源:UniqueDTOParamsValidatorTest.php

示例9: tearDown

 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;
 }
开发者ID:ABaldwinHunter,项目名称:symfony-clone,代码行数:12,代码来源:FileValidatorTest.php

示例10: createContext

 /**
  * {@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;
 }
开发者ID:sententiaregum,项目名称:sententiaregum,代码行数:16,代码来源:LocaleValidatorTest.php

示例11: setUp

 protected function setUp()
 {
     IntlTestHelper::requireFullIntl($this);
     parent::setUp();
 }
开发者ID:raphael-thibierge,项目名称:ProgWebServerProject,代码行数:5,代码来源:CurrencyValidatorTest.php

示例12: setUp

 protected function setUp()
 {
     $this->controllerResolver = $this->getMock('Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface');
     $this->templating = $this->getMock('Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface');
     parent::setUp();
 }
开发者ID:symfony-cmf,项目名称:routing-bundle,代码行数:6,代码来源:RouteDefaultsValidatorTest.php


注:本文中的Symfony\Component\Validator\Tests\Constraints\AbstractConstraintValidatorTest类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。