/**
  * testCheckUserAgentTrue method
  *
  * @return void
  */
 public function testCheckUserAgentTrue()
 {
     Configure::write('Session.checkAgent', true);
     TestCakeSession::$error = false;
     $agent = md5('http://randomdomainname.com' . Configure::read('Security.salt'));
     TestCakeSession::write('Config.userAgent', md5('Hacking you!'));
     TestCakeSession::setUserAgent($agent);
     $this->assertFalse(TestCakeSession::valid());
 }