This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Form/TestCase.php

36 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\Form;
use Symfony\Component\Form\FormFactory;
class TestCase extends \PHPUnit_Framework_TestCase
{
protected $theme;
protected $csrfProvider;
protected $validator;
protected $fieldFactory;
protected $factory;
protected function setUp()
{
$this->theme = $this->getMock('Symfony\Component\Form\Renderer\Theme\ThemeInterface');
$this->csrfProvider = $this->getMock('Symfony\Component\Form\CsrfProvider\CsrfProviderInterface');
$this->validator = $this->getMock('Symfony\Component\Validator\ValidatorInterface');
$this->fieldFactory = $this->getMock('Symfony\Component\Form\FieldFactory\FieldFactoryInterface');
$this->factory = new FormFactory($this->theme, $this->csrfProvider, $this->validator, $this->fieldFactory);
}
}