/** * @covers Sitemap::robotsCheck */ public function testRobotsCheck() { $result = $this->object->robotsCheck(); // Check on False when no parameters $this->assertFalse($result); $result = $this->object->robotsCheck('fake/url'); // Check on False $this->assertFalse($result); }