1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-08-09 05:02:44 +03:00

mostly empty test

This commit is contained in:
David Goodwin
2019-09-17 21:05:44 +01:00
parent 7965a83aff
commit 958df260ec

View File

@@ -0,0 +1,17 @@
<?php
class AdminHandlerTest extends \PHPUnit\Framework\TestCase {
public function testBasic() {
$x = new AdminHandler();
$list = $x->getList("");
$this->assertTrue($list);
$results = $x->result();
$this->assertEmpty($results);
}
}
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */