wiki.techinc.nl/tests/phpunit/includes/UserMailerTest.php
addshore 4bb09bbca5 @covers for all GlobalFunc tests
Also split 2 tests off into their correct test classes,
this methods are clearly no longer global functions

Change-Id: I482433f3099e72507a766e85d9576ff36e58b9ad
2013-10-24 10:00:55 +00:00

14 lines
No EOL
286 B
PHP

<?php
class UserMailerTest extends MediaWikiLangTestCase {
/**
* @covers UserMailer::quotedPrintable
*/
public function testQuotedPrintable() {
$this->assertEquals(
"=?UTF-8?Q?=C4=88u=20legebla=3F?=",
UserMailer::quotedPrintable( "\xc4\x88u legebla?", "UTF-8" ) );
}
}