]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Intl\Tests\Globals; | |
13 | ||
14 | /** | |
15 | * Test case for intl function implementations. | |
16 | * | |
17 | * @author Bernhard Schussek <bschussek@gmail.com> | |
18 | */ | |
19 | abstract class AbstractIntlGlobalsTest extends \PHPUnit_Framework_TestCase | |
20 | { | |
21 | public function errorNameProvider() | |
22 | { | |
23 | return array ( | |
24 | array(-129, '[BOGUS UErrorCode]'), | |
25 | array(0, 'U_ZERO_ERROR'), | |
26 | array(1, 'U_ILLEGAL_ARGUMENT_ERROR'), | |
27 | array(9, 'U_PARSE_ERROR'), | |
28 | array(129, '[BOGUS UErrorCode]'), | |
29 | ); | |
30 | } | |
31 | ||
32 | /** | |
33 | * @dataProvider errorNameProvider | |
34 | */ | |
35 | public function testGetErrorName($errorCode, $errorName) | |
36 | { | |
37 | $this->assertSame($errorName, $this->getIntlErrorName($errorCode)); | |
38 | } | |
39 | ||
40 | abstract protected function getIntlErrorName($errorCode); | |
41 | } |