예제 #1
0
파일: CurrentTest.cs 프로젝트: avs009/gsf
 public void ToInt64Test()
 {
     IConvertible target = new Current(10F);
     IFormatProvider provider = null;
     long expected = 10;
     long actual;
     actual = target.ToInt64(provider);
     Assert.AreEqual(expected, actual);
 }