/**
  * @dataProvider arabicExceptionProvider
  * @expectedException \InvalidArgumentException
  *
  * @param $number
  */
 public function test_statically_throw_exception_when_converting_roman_number_is_invalid($number)
 {
     NumberHumanizer::fromRoman($number);
 }