4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Intl\Tests\Locale\Verification
;
14 use Symfony\Component\Intl\Tests\Locale\AbstractLocaleTest
;
15 use Symfony\Component\Intl\Util\IntlTestHelper
;
18 * Verifies that {@link AbstractLocaleTest} matches the behavior of the
19 * {@link Locale} class with a specific version of ICU.
21 * @author Bernhard Schussek <bschussek@gmail.com>
23 class LocaleTest
extends AbstractLocaleTest
25 protected function setUp()
27 IntlTestHelper
::requireFullIntl($this);
32 protected function call($methodName)
34 $args = array_slice(func_get_args(), 1);
36 return call_user_func_array(array('Locale', $methodName), $args);