Exemplo n.º 1
0
 /**
  * @depends test_addingMarca_shouldReturnObjectWithSameProperties
  * @group read
  */
 public function test_gettingMarca_shouldReturnObjectWithSameProperties(\XAPISdk\Data\BusinessObjects\Marca $marcaAdded)
 {
     $marcaGetted = $this->_client->get($marcaAdded->getId());
     $this->assertEquals($marcaAdded->getNome(), $marcaGetted->getNome());
     return $marcaGetted;
 }