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