You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-08-06 06:42:37 +03:00
16 lines
297 B
PHP
16 lines
297 B
PHP
<?php
|
|
|
|
class AliasdomainHandlerTest extends \PHPUnit\Framework\TestCase {
|
|
public function testBasic() {
|
|
$x = new AliasdomainHandler();
|
|
|
|
$list = $x->getList("");
|
|
|
|
$this->assertTrue($list);
|
|
|
|
$results = $x->result();
|
|
|
|
$this->assertEmpty($results);
|
|
}
|
|
}
|