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

EvaluatePlusOperation() private method

private EvaluatePlusOperation ( ) : void
return void
        public void EvaluatePlusOperation()
        {
            Assert.AreEqual(1, EvaluateArithmeticUnaryOperator(ArithmeticOperator.Plus, 1));
            Assert.AreEqual(-1.7, EvaluateArithmeticUnaryOperator(ArithmeticOperator.Plus, -1.7));
        }