Ejemplo n.º 1
0
 public void Test1()
 {
     Assert.Equal(3, Solution.RomanToInt("III"));
 }
Ejemplo n.º 2
0
    public void Test1(int expected, string s)
    {
      var result = new Solution().RomanToInt(s);

      Assert.Equal(expected, result);
    }