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

SmallRandom_2_TestData() public static method

public static SmallRandom_2_TestData ( ) : IEnumerable
return IEnumerable
        public static IEnumerable<object[]> SmallRandom_2_TestData()
        {
            yield return new object[] { SmallRandomPositiveDouble(), SmallRandomPositiveDouble() }; // First quadrant
            yield return new object[] { SmallRandomNegativeDouble(), SmallRandomNegativeDouble() }; // Second quadrant
            yield return new object[] { SmallRandomNegativeDouble(), SmallRandomNegativeDouble() }; // Third quadrant
            yield return new object[] { SmallRandomPositiveDouble(), SmallRandomNegativeDouble() }; // Fourth quadrant
        }
ComplexTests