Bike.Test.ParserTest.Maths C# (CSharp) Method

Maths() private method

private Maths ( ) : void
return void
        public void Maths()
        {
            ParseAndWalk("true % 2;");
            ParseAndWalk("1 + 2 * 3 / 4 % 5;");
            ParseAndWalk("23 * 14.4 + 2.1 / 1 - 3.99 % 9.5;");
            ParseAndWalk("(1 + 2) * (3 + 4) / (5 - 6) % (7 - 8);");
            ParseAndWalk("(a);");
            ParseAndWalk("((((a))));");
            ParseAndWalk("((((a + b))) - (c / d * (e + ((f % g)/h))));");
        }