Exemplo n.º 1
0
 /**
  * Tests logout
  */
 public function testLogout()
 {
     $cb = new CodebirdT();
     $cb->setToken('123', '456');
     $cb->logout();
     $this->assertNull($cb->get('_oauth_token'));
     $this->assertNull($cb->get('_oauth_token_secret'));
 }