Exemplo n.º 1
0
 /**
  * @group ZF-6284
  */
 public function testTwitterObjectsSoNotShareSameHttpClientToPreventConflictingAuthentication()
 {
     $twitter1 = new Service\Twitter(array('username' => 'zftestuser1'));
     $twitter2 = new Service\Twitter(array('username' => 'zftestuser2'));
     $this->assertFalse($twitter1->getLocalHttpClient() === $twitter2->getLocalHttpClient());
 }