Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10534/NHibernate.Test
Modified Files:
FooBarTest.cs NHibernate.Test-1.1.csproj
Log Message:
Moved TimeType to its own test classes in the NHSpecific area and out
of the ported classes. MySql does not follow the DbType.Time docs so
this will help to isolate failing tests to just that datatype.
Index: FooBarTest.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/FooBarTest.cs,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -d -r1.68 -r1.69
*** FooBarTest.cs 30 Oct 2004 14:41:54 -0000 1.68
--- FooBarTest.cs 3 Nov 2004 03:37:05 -0000 1.69
***************
*** 1066,1070 ****
[Test]
- //[Ignore("Time Portions commented out - http://jira.nhibernate.org:8080/browse/NH-89")]
public void PersistCollections()
{
--- 1066,1069 ----
***************
*** 1101,1106 ****
baz.StringList[0] = "new value";
baz.StringSet = new Hashtable();
- //http://jira.nhibernate.org:8080/browse/NH-89
- // TODO: baz.TimeArray[2] = new DateTime(
Assert.AreEqual( 1, baz.StringGlarchMap.Count );
--- 1100,1103 ----
***************
*** 1142,1147 ****
Assert.AreEqual( "new value", baz.StringList[0], "changed element" );
Assert.AreEqual( 0, baz.StringSet.Count, "replaced set" );
- // todo: populate time array
- //Assert.IsNotNull( baz.TimeArray[2], "array element changed" );
baz.StringSet.Add( "two", new object() );
--- 1139,1142 ----
***************
*** 2319,2328 ****
[Test]
- [Ignore("Test not written yet.")]
- public void ArrayOfTimes()
- {
- }
-
- [Test]
public void Components()
{
--- 2314,2317 ----
Index: NHibernate.Test-1.1.csproj
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHibernate.Test-1.1.csproj,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** NHibernate.Test-1.1.csproj 25 Oct 2004 06:48:03 -0000 1.48
--- NHibernate.Test-1.1.csproj 3 Nov 2004 03:37:06 -0000 1.49
***************
*** 336,339 ****
--- 336,344 ----
/>
<File
+ RelPath = "NHSpecificTest\BasicTimeFixture.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "NHSpecificTest\BlobberInMemoryFixture.cs"
SubType = "Code"
|