wiki.techinc.nl/tests/phpunit/includes/mail/UserMailerTest.php
Kunal Mehta bf8810d6bc Split UserMailer.php into includes/mail/
Change-Id: Ic435bbdbb690028a5d34e8176522fcf4aa44fa92
2014-09-14 19:03:03 +00:00

14 lines
287 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" ) );
}
}