Beispiel #1
0
 /**
  * Check we can set and get data
  *
  * @throws \Silktide\SemRushApi\Model\Exception\InvalidDataException
  */
 public function testSetAndGetData()
 {
     $values = ['At' => 'top', 'Ac' => '560', 'Ad' => 'biscuits, cookies, hobnobs'];
     $this->instance->setData($values);
     $this->assertEquals($values, $this->instance->getData());
 }