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();
 }
 protected function setUp()
 {
     $this->em = DoctrineTestHelper::createTestEntityManager();
     $this->registry = $this->createRegistryMock($this->em);
     $this->createSchema($this->em);
     parent::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';
 }
 protected function setUp()
 {
     parent::setUp();
     $this->path = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'FileValidatorTest';
     $this->file = fopen($this->path, 'w');
     fwrite($this->file, ' ', 1);
 }
 protected function setUp()
 {
     $user = $this->createUser();
     $this->securityContext = $this->createSecurityContext($user);
     $this->encoder = $this->createPasswordEncoder();
     $this->encoderFactory = $this->createEncoderFactory($this->encoder);
     parent::setUp();
 }
 protected function setUp()
 {
     $user = $this->createUser();
     $this->tokenStorage = $this->createTokenStorage($user);
     $this->encoder = $this->createPasswordEncoder();
     $this->encoderFactory = $this->createEncoderFactory($this->encoder);
     parent::setUp();
 }
Esempio n. 7
0
    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();
    }
 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();
 }
 protected function setUp()
 {
     IntlTestHelper::requireFullIntl($this);
     parent::setUp();
 }
 protected function setUp()
 {
     $this->controllerResolver = $this->getMock('Symfony\\Component\\HttpKernel\\Controller\\ControllerResolverInterface');
     $this->templating = $this->getMock('Symfony\\Bundle\\FrameworkBundle\\Templating\\EngineInterface');
     parent::setUp();
 }