1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-31 10:04:20 +03:00
Files
postfixadmin/tests/FetchmailHandlerTest.php
2021-04-13 21:19:16 +01:00

18 lines
297 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);
}
}