Arithmetica.Tests.MathExpressionFunctionTests.MathExpressionFunction_Power C# (CSharp) Méthode

MathExpressionFunction_Power() private méthode

private MathExpressionFunction_Power ( ) : void
Résultat void
        public void MathExpressionFunction_Power()
        {
            this.Evaluate("pow(10,0)", 1, epsilon:0);
            this.Evaluate("pow(1,1)", 1, epsilon:0);
            this.Evaluate("pow(1,2)", 1, epsilon:0);
            this.Evaluate("pow(10,e)", 522.7353);
            this.Evaluate("pow(pi,pi)", 36.4621596);
            this.Evaluate("pow(e,pi)", 23.1406926);
        }