CheckOwnerTest.php 353 B

12345678910
  1. <?php
  2. class CheckOwnerTest extends \PHPUnit\Framework\TestCase {
  3. public function testBasic() {
  4. $check = check_owner('random@example.com', 'test.com');
  5. $this->assertFalse($check, "there should be no entries in test.com as it's an invalid/non-existant domain");
  6. }
  7. }
  8. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */