From: Paul H. <pha...@us...> - 2005-03-06 12:45:22
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21577/nhibernate/src/NHibernate.Test Modified Files: FooBarTest.cs Log Message: Refactored SessionImpl as per 2.1 for Save/Update Index: FooBarTest.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** FooBarTest.cs 19 Feb 2005 17:58:04 -0000 1.84 --- FooBarTest.cs 6 Mar 2005 12:44:34 -0000 1.85 *************** *** 350,354 **** public void ForceOuterJoin() { ! if( ((Engine.ISessionFactoryImplementor)sessions).EnableJoinedFetch==false ) { // don't bother to run the test if we can't test it --- 350,354 ---- public void ForceOuterJoin() { ! if( ((Engine.ISessionFactoryImplementor)sessions).IsOuterJoinedFetchEnabled == false ) { // don't bother to run the test if we can't test it *************** *** 3639,3643 **** Assert.IsTrue( baz.FooArray[0] is Proxy.INHibernateProxy ); //many-to-many Assert.AreEqual( bar2prox, baz.FooArray[1] ); ! if( ((Engine.ISessionFactoryImplementor)sessions).EnableJoinedFetch ) { enumer = baz.FooBag.GetEnumerator(); --- 3639,3643 ---- Assert.IsTrue( baz.FooArray[0] is Proxy.INHibernateProxy ); //many-to-many Assert.AreEqual( bar2prox, baz.FooArray[1] ); ! if( ((Engine.ISessionFactoryImplementor)sessions).IsOuterJoinedFetchEnabled ) { enumer = baz.FooBag.GetEnumerator(); |