* * 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\Forms; 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 = Forms::createFormFactoryBuilder() ->addExtensions($this->getExtensions()) ->getFormFactory(); } protected function getExtensions() { return array(); } }