Ejemplo n.º 1
0
 /**
  * Tests the getters and setters of the model
  * @test
  */
 public function setGetTest()
 {
     $sample = array('amount' => '4200', 'description' => 'Sample Description');
     $this->_refund->setAmount($sample['amount'])->setDescription($sample['description']);
     $this->assertEquals($this->_refund->getAmount(), $sample['amount']);
     $this->assertEquals($this->_refund->getDescription(), $sample['description']);
     return $this->_refund;
 }