public void ToArabicImperative(int expectedNumber, string romanNumeral) =>
 Assert.Equal(expectedNumber, NumeralMappingsImperative.ToArabic(romanNumeral));
 public void ToRomanImperative(int number, string expectedRomanNumeral) =>
 Assert.Equal(expectedRomanNumeral, NumeralMappingsImperative.ToRoman(number));