2013-10-24 09:53:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
2021-01-07 03:53:48 +00:00
|
|
|
class UserMailerTest extends MediaWikiUnitTestCase {
|
2013-10-24 09:53:24 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers UserMailer::quotedPrintable
|
|
|
|
|
*/
|
|
|
|
|
public function testQuotedPrintable() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"=?UTF-8?Q?=C4=88u=20legebla=3F?=",
|
2021-01-07 03:53:48 +00:00
|
|
|
UserMailer::quotedPrintable( "\xc4\x88u legebla?", "UTF-8" )
|
|
|
|
|
);
|
2013-10-24 09:53:24 +00:00
|
|
|
}
|
|
|
|
|
|
2013-11-19 18:03:54 +00:00
|
|
|
}
|