Also split 2 tests off into their correct test classes, this methods are clearly no longer global functions Change-Id: I482433f3099e72507a766e85d9576ff36e58b9ad
14 lines
No EOL
286 B
PHP
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" ) );
|
|
}
|
|
|
|
} |