PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
297 B

7 years ago
  1. <?php
  2. class AliasdomainHandlerTest extends \PHPUnit\Framework\TestCase {
  3. public function testBasic() {
  4. $x = new AliasdomainHandler();
  5. $list = $x->getList("");
  6. $this->assertTrue($list);
  7. $results = $x->result();
  8. $this->assertEmpty($results);
  9. }
  10. }