public void ShouldCreateAtan2Expression()
        {
            var factory = new DbExpressionFactory();
            DbMathematicalFunctionExpression mathematicalFunctionExpression = factory.Atan2(factory.Column("SomeColumn"), factory.Constant(1));

            ValidateMathematicalFunctionExpression(mathematicalFunctionExpression, DbMathematicalFunctionExpressionType.Atan2);
        }
 public void ShouldCreateAtan2Expression()
 {
     var factory = new DbExpressionFactory();
     DbMathematicalFunctionExpression mathematicalFunctionExpression = factory.Atan2(factory.Column("SomeColumn"), factory.Constant(1));
     ValidateMathematicalFunctionExpression(mathematicalFunctionExpression, DbMathematicalFunctionExpressionType.Atan2);
 }