public function __construct()
 {
     parent::__construct();
     $this->setDecimalLength(2)->setDecimalPoint(self::SEPARATOR_DOT)->setThousandsSeparator(self::SEPARATOR_COMMA);
 }
 /**
  * @expectedException \PositionalFile\Format\Exception\ConvertionException
  */
 public function testErrorWhenAnArrayIsGiven()
 {
     $this->object->apply(array());
 }