/**
  * @test
  * @covers \Itabs_Debit_Model_Xml_XmlCreator::setCurrency()
  * @covers \Itabs_Debit_Model_Xml_XmlCreator::getCurrency()
  */
 public function testSetCurrency()
 {
     $this->_model->setCurrency('SEK');
     $this->assertEquals('SEK', $this->_model->getCurrency());
 }