Exemplo n.º 1
0
 public void NextUnitRange(UInt16 unit, UInt16 lowerExp, UInt16 upperExp)
 {
     Utf16.NextUnitRange(unit, out UInt16 lower, out UInt16 upper);
     Assert.Equal(lowerExp, lower);
     Assert.Equal(upperExp, upper);
 }