1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-11-26 11:23:04 +03:00
Files
postfixadmin/tests/FetchmailHandlerTest.php
2021-03-22 09:28:28 +00:00

17 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);
}
}