X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/extensions/LocalisationUpdate/tests/phpunit/reader/ReaderFactoryTest.php diff --git a/extensions/LocalisationUpdate/tests/phpunit/reader/ReaderFactoryTest.php b/extensions/LocalisationUpdate/tests/phpunit/reader/ReaderFactoryTest.php new file mode 100644 index 00000000..feeb68cf --- /dev/null +++ b/extensions/LocalisationUpdate/tests/phpunit/reader/ReaderFactoryTest.php @@ -0,0 +1,40 @@ +getReader( $input ); + $observed = get_class( $reader ); + $this->assertEquals( $expected, $observed, $comment ); + } + + public function getReaderProvider() { + return [ + [ + 'languages/messages/MessagesFi.php', + 'LocalisationUpdate\PHPReader', + 'core php file', + ], + [ + 'extensions/Translate/Translate.i18n.php', + 'LocalisationUpdate\PHPReader', + 'extension php file', + ], + [ + 'extension/Translate/i18n/core/de.json', + 'LocalisationUpdate\JSONReader', + 'extension json file', + ], + ]; + } +}