You've already forked postfixadmin
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:
17
tests/AdminHandlerTest.php
Normal file
17
tests/AdminHandlerTest.php
Normal 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: */
|
Reference in New Issue
Block a user