12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Symfony\Component\Intl\Tests\Locale;
- use PHPUnit\Framework\TestCase;
- abstract class AbstractLocaleTest extends TestCase
- {
- public function testSetDefault()
- {
- $this->call('setDefault', 'en_GB');
- $this->assertSame('en_GB', $this->call('getDefault'));
- }
- abstract protected function call($methodName);
- }
|