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