emptyish tests

pull/298/head
David Goodwin 5 years ago
parent f4a5155f7a
commit 0e9a1ff0ff

@ -0,0 +1,15 @@
<?php
class AliasdomainHandlerTest extends \PHPUnit\Framework\TestCase {
public function testBasic() {
$x = new AliasdomainHandler();
$list = $x->getList("");
$this->assertTrue($list);
$results = $x->result();
$this->assertEmpty($results);
}
}

@ -0,0 +1,15 @@
<?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);
}
}
Loading…
Cancel
Save