0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/tests/FetchmailHandlerTest.php

16 lines
293 B
PHP
Raw Normal View History

2019-09-17 22:31:16 +02:00
<?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);
}
}