RevisionTest: Revision::constructFromRowArray is not a function
[lhc/web/wiklou.git] / tests / phpunit / includes / mail / UserMailerTest.php
1 <?php
2
3 class UserMailerTest extends MediaWikiLangTestCase {
4
5 /**
6 * @covers UserMailer::quotedPrintable
7 */
8 public function testQuotedPrintable() {
9 $this->assertEquals(
10 "=?UTF-8?Q?=C4=88u=20legebla=3F?=",
11 UserMailer::quotedPrintable( "\xc4\x88u legebla?", "UTF-8" ) );
12 }
13
14 }