Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8267
Modified Files:
NHibernate.Test-1.1.csproj SQLFunctionsTest.cs
Log Message:
Added test for blobs/clobs in memory
Index: NHibernate.Test-1.1.csproj
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHibernate.Test-1.1.csproj,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** NHibernate.Test-1.1.csproj 23 Aug 2004 13:13:24 -0000 1.36
--- NHibernate.Test-1.1.csproj 25 Aug 2004 04:06:59 -0000 1.37
***************
*** 312,315 ****
--- 312,320 ----
/>
<File
+ RelPath = "NHSpecificTest\BlobberInMemoryFixture.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "NHSpecificTest\ClassWithCompositeIdFixture.cs"
SubType = "Code"
Index: SQLFunctionsTest.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/SQLFunctionsTest.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** SQLFunctionsTest.cs 13 Aug 2004 18:56:33 -0000 1.4
--- SQLFunctionsTest.cs 25 Aug 2004 04:06:59 -0000 1.5
***************
*** 17,22 ****
public void SetUp()
{
! ExportSchema( new string[] { "Simple.hbm.xml"//,
! //"Blobber.hbm.xml"
} );
}
--- 17,22 ----
public void SetUp()
{
! ExportSchema( new string[] { "Simple.hbm.xml",
! "Blobber.hbm.xml"
} );
}
***************
*** 65,69 ****
[Test]
! [Ignore("HQL 'IN' keyword problems - http://jira.nhibernate.org:8080/browse/NH-84, IScrollableResults - http://jira.nhibernate.org:8080/browse/NH-37")]
public void SQLFunctions()
{
--- 65,69 ----
[Test]
! [Ignore("IScrollableResults - http://jira.nhibernate.org:8080/browse/NH-37")]
public void SQLFunctions()
{
***************
*** 196,201 ****
Assert.AreEqual( 1, q.List().Count );
- /*
- * http://jira.nhibernate.org:8080/browse/NH-84
q = s.CreateQuery("from s in class Simple where s.Name in (:name_list) and s.Count > :count");
IList list = new ArrayList(2);
--- 196,199 ----
***************
*** 205,209 ****
q.SetParameter( "count", (int)-1 );
Assert.AreEqual( 1, q.List().Count );
! */
/*
--- 203,207 ----
q.SetParameter( "count", (int)-1 );
Assert.AreEqual( 1, q.List().Count );
!
/*
***************
*** 226,235 ****
[Test]
! [Ignore("No BLOB/CLOB support yet - http://jira.nhibernate.org:8080/browse/NH-19")]
public void BlobClob()
{
}
!
}
}
--- 224,233 ----
[Test]
! [Ignore("BLOB/CLOB not implmented like h2.0.3 - http://jira.nhibernate.org:8080/browse/NH-19")]
public void BlobClob()
{
}
!
}
}
|