From: Michael D. <mik...@us...> - 2004-12-12 07:19:03
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate.Test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv344/src/NHibernate.Test Modified Files: NHibernate.Test-1.1.csproj ObjectAssertion.cs Log Message: Moved classes out of NHSpecific and into appropriate folder in Test project. Index: ObjectAssertion.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/ObjectAssertion.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ObjectAssertion.cs 10 Dec 2004 16:40:02 -0000 1.7 --- ObjectAssertion.cs 12 Dec 2004 07:18:23 -0000 1.8 *************** *** 19,23 **** } ! internal static void AssertEquals(Iesi.Collections.ISet expected, Iesi.Collections.ISet actual) { Assert.AreEqual( expected.Count, actual.Count, "two sets are diff size" ); --- 19,23 ---- } ! internal static void AreEqual(Iesi.Collections.ISet expected, Iesi.Collections.ISet actual) { Assert.AreEqual( expected.Count, actual.Count, "two sets are diff size" ); *************** *** 34,41 **** /// <param name="actual"></param> /// <remarks>The objects contained in the arrays must implement Equals correctly.</remarks> ! internal static void AssertEquals(IList expected, IList actual) { ! AssertEquals(expected, actual, true); } --- 34,41 ---- /// <param name="actual"></param> /// <remarks>The objects contained in the arrays must implement Equals correctly.</remarks> ! internal static void AreEqual(IList expected, IList actual) { ! AreEqual(expected, actual, true); } *************** *** 46,50 **** /// <param name="actual"></param> /// <param name="indexMatters">A boolean indicating if the List are compared at Index or by Contains.</param> ! internal static void AssertEquals(IList expected, IList actual, bool indexMatters) { Assert.AreEqual(expected.Count, actual.Count); --- 46,50 ---- /// <param name="actual"></param> /// <param name="indexMatters">A boolean indicating if the List are compared at Index or by Contains.</param> ! internal static void AreEqual(IList expected, IList actual, bool indexMatters) { Assert.AreEqual(expected.Count, actual.Count); *************** *** 68,72 **** /// <param name="actual"></param> /// <param name="compareValues">Set it to false when you only care about the keys, specifically with Sets.</param> ! internal static void AssertEquals(IDictionary expected, IDictionary actual, bool compareValues) { Assert.AreEqual(expected.Count, actual.Count); --- 68,72 ---- /// <param name="actual"></param> /// <param name="compareValues">Set it to false when you only care about the keys, specifically with Sets.</param> ! internal static void AreEqual(IDictionary expected, IDictionary actual, bool compareValues) { Assert.AreEqual(expected.Count, actual.Count); *************** *** 92,100 **** actualWithEqualValues["ONE"] = "one"; ! ObjectAssert.AssertEquals(expected, actualWithEqualValues, true); } ! public static void AssertEquals(DateTime expected, DateTime actual, bool useMilliseconds) { Assert.AreEqual(expected.Year, actual.Year, "Year"); --- 92,100 ---- actualWithEqualValues["ONE"] = "one"; ! ObjectAssert.AreEqual(expected, actualWithEqualValues, true); } ! public static void AreEqual(DateTime expected, DateTime actual, bool useMilliseconds) { Assert.AreEqual(expected.Year, actual.Year, "Year"); Index: NHibernate.Test-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate.Test/NHibernate.Test-1.1.csproj,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** NHibernate.Test-1.1.csproj 11 Dec 2004 20:08:18 -0000 1.53 --- NHibernate.Test-1.1.csproj 12 Dec 2004 07:18:22 -0000 1.54 *************** *** 381,389 **** /> <File - RelPath = "NHSpecificTest\BasicBinaryFixture.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "NHSpecificTest\BasicClassFixture.cs" SubType = "Code" --- 381,384 ---- *************** *** 391,399 **** /> <File - RelPath = "NHSpecificTest\BasicDoubleFixture.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "NHSpecificTest\BasicObjectFixture.cs" SubType = "Code" --- 386,389 ---- *************** *** 411,419 **** /> <File - RelPath = "NHSpecificTest\BlobberInMemoryFixture.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "NHSpecificTest\MapFixture.cs" SubType = "Code" --- 401,404 ---- *************** *** 593,596 **** --- 578,609 ---- /> <File + RelPath = "TypesTest\BinaryBlobClass.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "TypesTest\BinaryBlobClass.hbm.xml" + BuildAction = "EmbeddedResource" + /> + <File + RelPath = "TypesTest\BinaryBlobTypeFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "TypesTest\BinaryClass.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "TypesTest\BinaryClass.hbm.xml" + BuildAction = "EmbeddedResource" + /> + <File + RelPath = "TypesTest\BinaryTypeFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "TypesTest\BooleanTypeFixture.cs" SubType = "Code" *************** *** 613,616 **** --- 626,643 ---- /> <File + RelPath = "TypesTest\DoubleClass.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "TypesTest\DoubleClass.hbm.xml" + BuildAction = "EmbeddedResource" + /> + <File + RelPath = "TypesTest\DoubleTypeFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "TypesTest\GuidTypeFixture.cs" SubType = "Code" *************** *** 643,646 **** --- 670,687 ---- /> <File + RelPath = "TypesTest\StringClobClass.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "TypesTest\StringClobClass.hbm.xml" + BuildAction = "EmbeddedResource" + /> + <File + RelPath = "TypesTest\StringClobTypeFixture.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "TypesTest\TicksTypeFixture.cs" SubType = "Code" |