public void ToUintMinOver()
 {
     Assert.ThrowsException <OverflowException>(() => {
         var castedVal = BigUInteger.ToUInt32(new BigUInteger(uint.MinValue) - 1);
     });
 }
 public void ToUintFractional()
 {
     ExecTest <uint>(BigUInteger.ToUInt32(new BigUInteger(5) / 2), 2);
 }
 public void ToUintMin()
 {
     ExecTest <uint>(BigUInteger.ToUInt32(new BigUInteger(uint.MinValue)), uint.MinValue);
 }