[Mono-dev] [PATCH] System.Linq.Expressions

2007-08-12 Thread Federico Di Gregorio
Hi, this is the first of a series of patches vs the System.Linq.Expressions namespace. This patch doesn't change a lot of things but at least adds some tests (they were completely missing before). Included: * Added Test/ directory, modified Makefile to build and execute them * Changed a couple

Re: [Mono-dev] [PATCH] System.Linq.Expressions

2007-08-12 Thread Marek Safar
Hello Federico, this is the first of a series of patches vs the System.Linq.Expressions namespace. This patch doesn't change a lot of things but at least adds some tests (they were completely missing before). Included: * Added Test/ directory, modified Makefile to build and execute them *

Re: [Mono-dev] Oracle.DataAcces.Client unimplemented?

2007-08-12 Thread Daniel Morgan
Use System.Data.OracleClient instead. --- Brandon Perry [EMAIL PROTECTED] wrote: Is the Oracle assembly unimplemented, or am I missing a package? I cannot find it in the Add References... dialog. ___ Mono-devel-list mailing list

Re: [Mono-dev] [PATCH] System.Linq.Expressions

2007-08-12 Thread Charlie Poole
Hi Guys, * Assert.AreEqual (expr.Method, null); It's always better to use most appropriate method. In the cases like this should be Assert.IsNull or similar. * Assert.AreEqual(expr.Method.Name, op_Addition); The preferred way it's add a message or at least id to each assertion.