public function testDeveEntenderSimboloI()
 {
     $romano = new ConversorDeNumeroRomano();
     $numero = $romano->converte("V");
     $this->assertEquals(5, $numero);
 }
 public function testeDeveEntenderOSimboloIX()
 {
     $romano = new ConversorDeNumeroRomano();
     $numero = $romano->converte("IX");
     $this->assertEquals(9, $numero);
 }