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