FetchmailHandlerTest.php 293 B

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