Exemplo n.º 1
0
 /**
  * @covers SimplyDO\OAuthResponse::setInfo
  * @covers SimplyDO\OAuthResponse::getInfo
  */
 public function testShouldSetAndGetInfo()
 {
     $this->model->setInfo(['key' => 'value']);
     $info = $this->model->getInfo();
     $this->assertTrue(is_array($info));
     $this->assertArrayHasKey('key', $info);
 }