* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Tests; use Symfony\Component\Form\FormFactory; use Symfony\Component\Form\Extension\Core\CoreExtension; /** * @author Bernhard Schussek */ class FormIntegrationTestCase extends \PHPUnit_Framework_TestCase { /** * @var \Symfony\Component\Form\FormFactoryInterface */ protected $factory; protected function setUp() { if (!class_exists('Symfony\Component\EventDispatcher\EventDispatcher')) { $this->markTestSkipped('The "EventDispatcher" component is not available'); } $this->factory = new FormFactory($this->getExtensions()); } protected function getExtensions() { return array( new CoreExtension(), ); } }