AjScript.Tests.Expressions.ArithmeticExpressionTests.EvaluateAddOperation C# (CSharp) Method

EvaluateAddOperation() private method

private EvaluateAddOperation ( ) : void
return void
        public void EvaluateAddOperation()
        {
            Assert.AreEqual(2, EvaluateArithmeticBinaryOperator(ArithmeticOperator.Add, 1, 1));
            Assert.AreEqual(2.4, EvaluateArithmeticBinaryOperator(ArithmeticOperator.Add, 1.2, 1.2));
        }