/**
  * @test
  * @covers \Itabs_Debit_Model_Xml_Payment::setCreditorName()
  * @covers \Itabs_Debit_Model_Xml_Payment::getCreditorName()
  */
 public function testSetCreditorName()
 {
     $this->_model->setCreditorName('test tester');
     $this->assertEquals('test tester', $this->_model->getCreditorName());
 }