From: Griffin C. <gc...@us...> - 2005-01-01 21:57:29
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7319/DotNetMock.Tests/Dynamic Modified Files: Tag: RFE_1001778 AssignTests.cs DynamicMockTests.cs Log Message: - Changed new Test classes to correct namespace - Added non-ambiguous GetMethod() call for "Call" method in ClassGenerator. - Minor coding std refactorings. Index: DynamicMockTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/DynamicMockTests.cs,v retrieving revision 1.16.2.3 retrieving revision 1.16.2.4 diff -C2 -d -r1.16.2.3 -r1.16.2.4 *** DynamicMockTests.cs 30 Dec 2004 00:04:35 -0000 1.16.2.3 --- DynamicMockTests.cs 1 Jan 2005 21:57:14 -0000 1.16.2.4 *************** *** 5,9 **** using System; using System.Reflection; ! using NUnit.Framework; --- 5,9 ---- using System; using System.Reflection; ! using DotNetMock.Dynamic; using NUnit.Framework; *************** *** 11,15 **** #endregion ! namespace DotNetMock.Dynamic { [TestFixture] --- 11,15 ---- #endregion ! namespace DotNetMock.Tests.Dynamic { [TestFixture] *************** *** 182,186 **** mock.Verify(); } - [Test] [ExpectedException(typeof(AssertionException))] --- 182,185 ---- *************** *** 226,230 **** mock.Verify(); } - [Test] [ExpectedException(typeof(DotNetMock.AssertionException))] --- 225,228 ---- Index: AssignTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Attic/AssignTests.cs,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** AssignTests.cs 30 Dec 2004 00:04:36 -0000 1.1.2.1 --- AssignTests.cs 1 Jan 2005 21:57:04 -0000 1.1.2.2 *************** *** 3,8 **** #endregion #region Imports ! using System; ! using NUnit.Framework; --- 3,7 ---- #endregion #region Imports ! using DotNetMock.Dynamic; using NUnit.Framework; *************** *** 10,14 **** #endregion ! namespace DotNetMock.Dynamic { [TestFixture] --- 9,13 ---- #endregion ! namespace DotNetMock.Tests.Dynamic { [TestFixture] |