token test coverage
parent
045a19ae33
commit
dcef888587
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
class DomainHandlerTest extends \PHPUnit\Framework\TestCase {
|
||||
public function testBasic() {
|
||||
$x = new DomainHandler();
|
||||
|
||||
$list = $x->getList("");
|
||||
|
||||
$this->assertTrue($list);
|
||||
|
||||
$results = $x->result();
|
||||
|
||||
$this->assertEmpty($results);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue