mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
14 lines
301 B
PHP
14 lines
301 B
PHP
<?php
|
|
namespace common\tests\unit\emails;
|
|
|
|
use common\emails\EmailHelper;
|
|
use common\tests\unit\TestCase;
|
|
|
|
class EmailHelperTest extends TestCase {
|
|
|
|
public function testBuildTo() {
|
|
$this->assertSame(['mock@ely.by' => 'username'], EmailHelper::buildTo('username', 'mock@ely.by'));
|
|
}
|
|
|
|
}
|