示例#1
0
 /**
  * @test
  * @covers \Itabs_Debit_Model_Xml_Payment::setTransactionDate()
  * @covers \Itabs_Debit_Model_Xml_Payment::getTransactionDate()
  */
 public function testSetTransactionDate()
 {
     $this->_model->setTransactionDate('2014-01-01');
     $this->assertEquals('2014-01-01', $this->_model->getTransactionDate());
     $this->_model->setTransactionDate(null);
 }