1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-08-13 02:10:44 +02:00

Move testcase to own test function

Move testcase for getDefaultEmailAddress with mail_domain set in config.php to own test function.
Dieser Commit ist enthalten in:
itheiss 2013-03-26 09:40:27 +01:00
Ursprung d00b2f610e
Commit 410b991221

Datei anzeigen

@ -46,7 +46,9 @@ class Test_Util extends PHPUnit_Framework_TestCase {
function testGetDefaultEmailAddress() {
$email = \OCP\Util::getDefaultEmailAddress("no-reply");
$this->assertEquals('no-reply@localhost.localdomain', $email);
}
function testGetDefaultEmailAddressFromConfig() {
OC_Config::setValue('mail_domain', 'example.com');
$email = \OCP\Util::getDefaultEmailAddress("no-reply");
$this->assertEquals('no-reply@example.com', $email);