System.Numerics.Tests.IsOneTest.VerifyIsOne C# (CSharp) Méthode

VerifyIsOne() private static méthode

private static VerifyIsOne ( BigInteger bigInt, bool expectedAnswer ) : void
bigInt BigInteger
expectedAnswer bool
Résultat void
        private static void VerifyIsOne(BigInteger bigInt, bool expectedAnswer)
        {
            Assert.Equal(expectedAnswer, bigInt.IsOne);
        }
    }