wiki.techinc.nl/tests/phpunit/includes/languages/LanguageTyvTest.php
Reedy 85396a9c99 tests: Fix @covers and @coversDefaultClass to have leading \
Change-Id: I5629f91387f2ac453ee4341bfe4bba310bd52f03
2024-02-16 22:43:56 +00:00

23 lines
474 B
PHP

<?php
/**
* @group Language
*/
class LanguageTyvTest extends LanguageClassesTestCase {
/**
* @dataProvider provideGrammar
* @covers \Language::convertGrammar
*/
public function testGrammar( $result, $word, $case ) {
$this->assertEquals( $result, $this->getLang()->convertGrammar( $word, $case ) );
}
public static function provideGrammar() {
yield 'Wikipedia genitive' => [
'Википедияның',
'Википедия',
'genitive',
];
}
}