System.Numerics.Tests.ComplexTests.Cast_BigInteger_TestData C# (CSharp) Method

Cast_BigInteger_TestData() public static method

public static Cast_BigInteger_TestData ( ) : IEnumerable
return IEnumerable
        public static IEnumerable<object[]> Cast_BigInteger_TestData()
        {
            yield return new object[] { (BigInteger)double.MinValue };
            yield return new object[] { (BigInteger)(-1) };
            yield return new object[] { (BigInteger)0 };
            yield return new object[] { (BigInteger)1 };
            yield return new object[] { (BigInteger)double.MaxValue };

            yield return new object[] { (BigInteger)RandomPositiveDouble() };
            yield return new object[] { (BigInteger)RandomNegativeDouble() };
        }
ComplexTests