Arithmetica.Tests.MathExpressionFunctionTests.MathExpressionFunction_Power C# (CSharp) Метод

MathExpressionFunction_Power() приватный Метод

private MathExpressionFunction_Power ( ) : void
Результат 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);
        }