Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1:/tmp/cvs-serv916/DotNetMock Modified Files: AbstractExpectationCollection.cs DotNetMock.build ExpectationCounter.cs ExpectationString.cs ExpectationValue.cs Log Message: Index: AbstractExpectationCollection.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/AbstractExpectationCollection.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** AbstractExpectationCollection.cs 13 Jan 2003 04:03:57 -0000 1.6 --- AbstractExpectationCollection.cs 7 Feb 2003 03:13:40 -0000 1.7 *************** *** 150,154 **** for (int i = 0; i < this.ActualCollection.Count; i++) { ! NUnit.Framework.Assertion.AssertEquals("Collection items not equal.", this.ExpectedCollection[i].ToString(), this.ActualCollection[i].ToString()); } } --- 150,154 ---- for (int i = 0; i < this.ActualCollection.Count; i++) { ! NUnit.Framework.Assertion.AssertEquals("Collection items not equal at index " + i, this.ExpectedCollection[i].ToString(), this.ActualCollection[i].ToString()); } } Index: DotNetMock.build =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/DotNetMock.build,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DotNetMock.build 11 Oct 2002 03:07:59 -0000 1.2 --- DotNetMock.build 7 Feb 2003 03:13:41 -0000 1.3 *************** *** 2,7 **** <project name=".NET Mock Objects"> <description>Build file for main .NET Mock Objects module</description> ! <property name="debug" value="true"/> ! <property name="build.dir" value="../build/"/> <property name="project.name" value="DotNetMock"/> --- 2,9 ---- <project name=".NET Mock Objects"> <description>Build file for main .NET Mock Objects module</description> ! <property name="debug" value="false"/> ! <property name="bin.dir" value="bin"/> ! <property name="obj.dir" value="obj"/> ! <property name="build.dir" value="../build"/> <property name="project.name" value="DotNetMock"/> *************** *** 13,18 **** <target name="clean" description="Cleans environment to pre-build state"> ! <delete dir="${build.dir}" failonerror="false"/> ! <delete file="../lib/${project.name}.dll" failonerror="false"/> </target> --- 15,20 ---- <target name="clean" description="Cleans environment to pre-build state"> ! <delete dir="${bin.dir}" failonerror="false"/> ! <delete dir="${obj.dir}" failonerror="false"/> </target> *************** *** 26,30 **** </references> </csc> - <copy file="${build.dir}/${project.name}.dll" todir="../lib"/> </target> </project> --- 28,31 ---- Index: ExpectationCounter.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/ExpectationCounter.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ExpectationCounter.cs 13 Jan 2003 04:03:57 -0000 1.7 --- ExpectationCounter.cs 7 Feb 2003 03:13:41 -0000 1.8 *************** *** 42,46 **** /// </summary> public override void Verify() { ! Assertion.AssertEquals("Did not receive the expected Count.", this._expectedCalls, this._actualCalls); } /// <summary> --- 42,46 ---- /// </summary> public override void Verify() { ! Assertion.AssertEquals("Did not receive the expected Count for object " + this.name, this._expectedCalls, this._actualCalls); } /// <summary> Index: ExpectationString.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/ExpectationString.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ExpectationString.cs 13 Jan 2003 04:03:57 -0000 1.5 --- ExpectationString.cs 7 Feb 2003 03:13:41 -0000 1.6 *************** *** 65,69 **** if (this.HasExpectations) { ! NUnit.Framework.Assertion.AssertEquals("String values not equal.", this._expectedString, this._actualString); } } --- 65,69 ---- if (this.HasExpectations) { ! NUnit.Framework.Assertion.AssertEquals("String values not equal for object " + this.name, this._expectedString, this._actualString); } } Index: ExpectationValue.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/ExpectationValue.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ExpectationValue.cs 13 Jan 2003 04:03:57 -0000 1.9 --- ExpectationValue.cs 7 Feb 2003 03:13:41 -0000 1.10 *************** *** 67,71 **** if (this.HasExpectations) { ! NUnit.Framework.Assertion.AssertEquals("Object values do not equal.",this._expectedValue, this._actualValue); } } --- 67,71 ---- if (this.HasExpectations) { ! NUnit.Framework.Assertion.AssertEquals("Object values do not equal for object " + this.name ,this._expectedValue, this._actualValue); } } |