LocalizedTestCase.php 541 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Tests\Loader;
  11. use PHPUnit\Framework\TestCase;
  12. abstract class LocalizedTestCase extends TestCase
  13. {
  14. protected function setUp()
  15. {
  16. if (!extension_loaded('intl')) {
  17. $this->markTestSkipped('Extension intl is required.');
  18. }
  19. }
  20. }