Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CacheTest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5548/nhibernate/src/NHibernate.Test/CacheTest
Modified Files:
CacheFixture.cs
Log Message:
Various refactorings on the way to 2.1 querying capability
Index: CacheFixture.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/CacheTest/CacheFixture.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** CacheFixture.cs 29 Oct 2004 05:55:25 -0000 1.3
--- CacheFixture.cs 1 Mar 2005 16:24:41 -0000 1.4
***************
*** 59,63 ****
System.Threading.Thread.Sleep(15);
! ccs.Release("foo");
Assert.IsNull( ccs.Get("foo", after) );
--- 59,63 ----
System.Threading.Thread.Sleep(15);
! ccs.Release("foo", null);
Assert.IsNull( ccs.Get("foo", after) );
***************
*** 95,99 ****
System.Threading.Thread.Sleep(15);
! ccs.Release("foo");
System.Threading.Thread.Sleep(15);
--- 95,99 ----
System.Threading.Thread.Sleep(15);
! ccs.Release("foo", null);
System.Threading.Thread.Sleep(15);
***************
*** 106,110 ****
System.Threading.Thread.Sleep(15);
! ccs.Release("foo");
Assert.IsFalse( ccs.Put("foo", "bar", whileLocked) );
--- 106,110 ----
System.Threading.Thread.Sleep(15);
! ccs.Release("foo", null);
Assert.IsFalse( ccs.Put("foo", "bar", whileLocked) );
|