setBot() public method

public setBot ( Bot $bot )
$bot Bot
 public function testBot()
 {
     $ua = new UserAgent();
     $this->assertInstanceOf('UserAgentParser\\Model\\Bot', $ua->getBot());
     $mock = self::createMock('UserAgentParser\\Model\\Bot');
     $ua->setBot($mock);
     $this->assertSame($mock, $ua->getBot());
 }