From: Michael D. <mik...@us...> - 2005-04-17 17:16:13
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10283/NHibernate.Test Modified Files: AssemblyInfo.cs FooBarTest.cs Log Message: Fixed up the QBE portion of NHibernate.Expression. Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** FooBarTest.cs 31 Mar 2005 12:42:39 -0000 1.90 --- FooBarTest.cs 17 Apr 2005 17:16:04 -0000 1.91 *************** *** 959,964 **** Assert.IsTrue( list.Count==1 && list[0]==f ); ! Expression.Expression andExpression; ! Expression.Expression orExpression; andExpression = Expression.Expression.And( Expression.Expression.Eq( "Integer", f.Integer ), Expression.Expression.Like( "String", f.String ) ); --- 959,964 ---- Assert.IsTrue( list.Count==1 && list[0]==f ); ! Expression.ICriterion andExpression; ! Expression.ICriterion orExpression; andExpression = Expression.Expression.And( Expression.Expression.Eq( "Integer", f.Integer ), Expression.Expression.Like( "String", f.String ) ); Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/AssemblyInfo.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AssemblyInfo.cs 1 Mar 2005 16:24:41 -0000 1.12 --- AssemblyInfo.cs 17 Apr 2005 17:16:04 -0000 1.13 *************** *** 5,9 **** // <autogenerated> // This code was generated by a tool. ! // Runtime Version: 1.1.4322.2032 // // Changes to this file may cause incorrect behavior and will be lost if --- 5,9 ---- // <autogenerated> // This code was generated by a tool. ! // Runtime Version: 1.1.4322.573 // // Changes to this file may cause incorrect behavior and will be lost if |