getIsBot() public method

public getIsBot ( ) : boolean
return boolean
Esempio n. 1
0
 public function testIsBot()
 {
     $bot = new Bot();
     $this->assertNull($bot->getIsBot());
     $bot->setIsBot(true);
     $this->assertTrue($bot->getIsBot());
     $bot->setIsBot(false);
     $this->assertFalse($bot->getIsBot());
 }