Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class PluralTest extends TestCase |
||
14 | { |
||
15 | /** |
||
16 | * Test for npgettext. |
||
17 | * |
||
18 | * @param int $number Number |
||
19 | * @param string $expected Expected output |
||
20 | * |
||
21 | * @dataProvider providerTestNpgettext |
||
22 | */ |
||
23 | public function testNpgettext(int $number, string $expected): void |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Data provider for test_npgettext. |
||
37 | */ |
||
38 | public static function providerTestNpgettext(): array |
||
52 |