public static void RunTests_Int64ImplicitCastToComplex()
        {
            VerifyInt64ImplicitCastToComplex(Int64.MinValue);

            for (int i = 0; i < Support.RandomSampleCount; ++i)
            {
                Int64 randomValue = Support.GetRandomInt64Value(true);
                VerifyInt64ImplicitCastToComplex(randomValue);
            }

            VerifyInt64ImplicitCastToComplex(-1);
            VerifyInt64ImplicitCastToComplex(0);
            VerifyInt64ImplicitCastToComplex(1);

            for (int i = 0; i < Support.RandomSampleCount; ++i)
            {
                Int64 randomValue = Support.GetRandomInt64Value(false);
                VerifyInt64ImplicitCastToComplex(randomValue);
            }

            VerifyInt64ImplicitCastToComplex(Int64.MaxValue);
        }