示例#1
0
文件: CurrentTest.cs 项目: avs009/gsf
 public void ToDecimalTest()
 {
     IConvertible target = new Current(10F);
     IFormatProvider provider = null;
     Decimal expected = new Decimal(10);
     Decimal actual;
     actual = target.ToDecimal(provider);
     Assert.AreEqual(expected, actual);
 }