This list is closed, nobody may subscribe to it.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(13) |
Oct
(49) |
Nov
(1) |
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(12) |
Feb
(42) |
Mar
(61) |
Apr
(36) |
May
(20) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(7) |
2004 |
Jan
(29) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2005 |
Jan
(12) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(15) |
Nov
(89) |
Dec
(85) |
2006 |
Jan
(17) |
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <her...@ec...> - 2004-01-30 14:55:55
|
Griffin Caprio escribio: > That's great. if you send me your changes, I will see > what I can do to make the TestFramework choice > dynamic. heh... i guess you'll have to work hard to do that. :-( my work was a proof of concept. i'm not using cvs to record changes by now. i started porting from the dotnetmock official distrib. alas, i rearranged the directories sources to allow mass source changes inside visual studio since that's our build tool in here. if you are still interested i can send you the project. > DotNetMock is very much alive. The core framework is > complete, so development has slowed. But lots of > exciting stuff is coming in the area of Dynamic Mocks > as well as more docs & examples. ah. that's great. > Anything you would like to see? can't tell right now. i'm just starting to using it. still, one problem that i couldn't solve neither investigate was the assert in MockDataReaderTests.cs:67 where it says Assertion.Equals(dataTable2, _reader.GetSchemaTable()); when ported to csUnit, it fails. i'm confused because i couldn't make DataTable.Equals() work in Framework 1.1. well... it does work as long as the comparing objects are the same. i replaced that assert with: // Assert.Equals(dataTable2, _reader.GetSchemaTable()); DataTable dt1 = _reader.GetSchemaTable(); Assert.Equals(3, dt1.Columns.Count); for (int i = 0; i < 3; i++) { Assert.Equals(dataTable2.Columns[i].ColumnName, dt1.Columns[i].ColumnName); Assert.Equals(dataTable2.Columns[i].DataType, dt1.Columns[i].DataType); } > Also, I am always curious about what people think are > using DotNetMock and what they think? my main interest is the IDbConnection family mock-object classes (the ones that follows Steve Freeman's proposal for data base testing of our own project. Regards, -Hernan ________________________________________________________________________________________ Este mensaje ha sido analizado y protegido por la tecnologia antivirus www.trendmicro.es |
From: <her...@ec...> - 2004-01-28 17:52:47
|
Hi DotNetMock's developers! Just ported DotNetMock to csUnit. I did it because that's what we use here. Are you still supporting it or is it an abandoned project? Regards, -Hernan ________________________________________________________________________________________ Este mensaje ha sido analizado y protegido por la tecnologia antivirus www.trendmicro.es |
From: <gc...@us...> - 2004-01-20 22:43:18
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Xml/XPath In directory sc8-pr-cvs1:/tmp/cvs-serv23550/DotNetMock.Framework.Tests/Xml/XPath Modified Files: MockXPathDocumentTests.cs Log Message: Index: MockXPathDocumentTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Xml/XPath/MockXPathDocumentTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MockXPathDocumentTests.cs 20 Jan 2004 15:55:17 -0000 1.2 --- MockXPathDocumentTests.cs 20 Jan 2004 22:43:13 -0000 1.3 *************** *** 249,253 **** Assertion.AssertNotNull( "Navigator should never be null.", navigator ); Assertion.AssertEquals( "Navigators should equal.", typeof(XPathNavigator), navigator.GetType().BaseType ); - } } --- 249,252 ---- |
From: <gc...@us...> - 2004-01-20 22:43:18
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data In directory sc8-pr-cvs1:/tmp/cvs-serv23550/DotNetMock.Framework/Data Modified Files: MockDataReader.cs Log Message: Index: MockDataReader.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data/MockDataReader.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MockDataReader.cs 1 Apr 2003 01:43:57 -0000 1.4 --- MockDataReader.cs 20 Jan 2004 22:43:14 -0000 1.5 *************** *** 22,26 **** * and wherever such third-party acknowledgments normally appear. * ! * 4. The names "log4j" and "Apache Software Foundation" must not be used to * endorse or promote products derived from this software without prior * written permission. For written permission, please contact --- 22,26 ---- * and wherever such third-party acknowledgments normally appear. * ! * 4. The names "DotNetMock" and "Apache Software Foundation" must not be used to * endorse or promote products derived from this software without prior * written permission. For written permission, please contact |
From: <gc...@us...> - 2004-01-20 15:55:20
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Xml/XPath In directory sc8-pr-cvs1:/tmp/cvs-serv27155/DotNetMock.Framework.Tests/Xml/XPath Modified Files: MockXPathDocumentTests.cs Log Message: Corrected namespace errors Index: MockXPathDocumentTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Xml/XPath/MockXPathDocumentTests.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MockXPathDocumentTests.cs 7 Apr 2003 00:43:57 -0000 1.1 --- MockXPathDocumentTests.cs 20 Jan 2004 15:55:17 -0000 1.2 *************** *** 5,9 **** using DotNetMock.Framework.Xml.XPath; ! namespace DotNetMock.Tests.Xml.XPath { [TestFixture] --- 5,9 ---- using DotNetMock.Framework.Xml.XPath; ! namespace DotNetMock.Framework.Tests.Xml.XPath { [TestFixture] |
From: <gc...@us...> - 2004-01-20 15:55:20
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Security/Principal In directory sc8-pr-cvs1:/tmp/cvs-serv27155/DotNetMock.Framework.Tests/Security/Principal Modified Files: MockIIdentityTests.cs MockIPrincipalTests.cs Log Message: Corrected namespace errors Index: MockIIdentityTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Security/Principal/MockIIdentityTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MockIIdentityTests.cs 1 Apr 2003 01:43:58 -0000 1.3 --- MockIIdentityTests.cs 20 Jan 2004 15:55:16 -0000 1.4 *************** *** 4,8 **** using DotNetMock.Framework.Security.Principal; ! namespace DotNetMock.Tests.Security.Principal { [TestFixture] --- 4,8 ---- using DotNetMock.Framework.Security.Principal; ! namespace DotNetMock.Framework.Tests.Security.Principal { [TestFixture] Index: MockIPrincipalTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Security/Principal/MockIPrincipalTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MockIPrincipalTests.cs 11 Mar 2003 22:45:42 -0000 1.2 --- MockIPrincipalTests.cs 20 Jan 2004 15:55:16 -0000 1.3 *************** *** 4,8 **** using DotNetMock.Framework.Security.Principal; ! namespace DotNetMock.Tests.Security.Principal { [TestFixture] --- 4,8 ---- using DotNetMock.Framework.Security.Principal; ! namespace DotNetMock.Framework.Tests.Security.Principal { [TestFixture] |
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data In directory sc8-pr-cvs1:/tmp/cvs-serv27155/DotNetMock.Framework.Tests/Data Modified Files: MockCommandTests.cs MockDataParameterCollectionTests.cs MockDataParameterTests.cs MockDataReaderTests.cs MockDbConnectionTests.cs Log Message: Corrected namespace errors Index: MockCommandTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data/MockCommandTests.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MockCommandTests.cs 8 Apr 2003 04:27:11 -0000 1.4 --- MockCommandTests.cs 20 Jan 2004 15:55:16 -0000 1.5 *************** *** 4,8 **** using DotNetMock.Framework.Data; ! namespace DotNetMock.Tests.Data { /// <summary> --- 4,8 ---- using DotNetMock.Framework.Data; ! namespace DotNetMock.Framework.Tests.Data { /// <summary> Index: MockDataParameterCollectionTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data/MockDataParameterCollectionTests.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MockDataParameterCollectionTests.cs 5 May 2003 01:42:05 -0000 1.4 --- MockDataParameterCollectionTests.cs 20 Jan 2004 15:55:16 -0000 1.5 *************** *** 6,10 **** using System.Data.SqlClient; ! namespace DotNetMock.Tests.Data { [TestFixture] --- 6,10 ---- using System.Data.SqlClient; ! namespace DotNetMock.Framework.Tests.Data { [TestFixture] Index: MockDataParameterTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data/MockDataParameterTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MockDataParameterTests.cs 5 May 2003 01:42:05 -0000 1.3 --- MockDataParameterTests.cs 20 Jan 2004 15:55:16 -0000 1.4 *************** *** 4,8 **** using DotNetMock.Framework.Data; ! namespace DotNetMock.Tests.Data { /// <summary> --- 4,8 ---- using DotNetMock.Framework.Data; ! namespace DotNetMock.Framework.Tests.Data { /// <summary> Index: MockDataReaderTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data/MockDataReaderTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MockDataReaderTests.cs 25 Mar 2003 02:39:57 -0000 1.3 --- MockDataReaderTests.cs 20 Jan 2004 15:55:16 -0000 1.4 *************** *** 4,8 **** using NUnit.Framework; ! namespace DotNetMock.Tests.Data { [TestFixture] --- 4,8 ---- using NUnit.Framework; ! namespace DotNetMock.Framework.Tests.Data { [TestFixture] Index: MockDbConnectionTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/Data/MockDbConnectionTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** MockDbConnectionTests.cs 1 Apr 2003 01:43:57 -0000 1.3 --- MockDbConnectionTests.cs 20 Jan 2004 15:55:16 -0000 1.4 *************** *** 4,8 **** using NUnit.Framework; ! namespace DotNetMock.Tests.Data { [TestFixture] --- 4,8 ---- using NUnit.Framework; ! namespace DotNetMock.Framework.Tests.Data { [TestFixture] |
From: <gc...@us...> - 2004-01-20 15:45:41
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests In directory sc8-pr-cvs1:/tmp/cvs-serv25099/DotNetMock.Tests Added Files: .cvsignore Log Message: Added .cvsignore files --- NEW FILE: .cvsignore --- DotNetMock.Tests.csproj.user bin obj |
From: <gc...@us...> - 2004-01-20 15:45:41
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples In directory sc8-pr-cvs1:/tmp/cvs-serv25099/DotNetMock.Examples Added Files: .cvsignore Log Message: Added .cvsignore files --- NEW FILE: .cvsignore --- DotNetMock.Examples.csproj.user bin obj |
From: <gc...@us...> - 2004-01-20 15:45:41
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework In directory sc8-pr-cvs1:/tmp/cvs-serv25099/DotNetMock.Framework Added Files: .cvsignore Log Message: Added .cvsignore files --- NEW FILE: .cvsignore --- DotNetMock.Framework.csproj.user bin obj |
From: <gc...@us...> - 2004-01-20 15:45:41
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests In directory sc8-pr-cvs1:/tmp/cvs-serv25099/DotNetMock.Framework.Tests Added Files: .cvsignore Log Message: Added .cvsignore files --- NEW FILE: .cvsignore --- DotNetMock.Framework.Tests.csproj.user bin obj |
From: <gc...@us...> - 2004-01-20 15:45:41
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1:/tmp/cvs-serv25099 Added Files: .cvsignore Log Message: Added .cvsignore files --- NEW FILE: .cvsignore --- DotNetMock.suo |
From: <gc...@us...> - 2004-01-20 15:43:47
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1:/tmp/cvs-serv24577/DotNetMock Added Files: .cvsignore Log Message: --- NEW FILE: .cvsignore --- DotNetMock.csproj.user bin obj |
From: <gc...@us...> - 2004-01-10 23:31:03
|
Update of /cvsroot/dotnetmock/dotnetmock/lib In directory sc8-pr-cvs1:/tmp/cvs-serv12160/lib Modified Files: nunit.framework.dll Added Files: corprof.idl corprof.tlb Log Message: - Added new NUnit version - Added CLR Profiling TLB's & IDL's --- NEW FILE: corprof.idl --- // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /************************************************************************************** ** ** ** Corprof.idl - CLR Profiling interfaces. ** ** ** **************************************************************************************/ /* -------------------------------------------------------------------------- * * Imported types * -------------------------------------------------------------------------- */ #if !DUMMY_DEFINITIONS_BECAUSE_I_CANT_FIGURE_OUT_HOW_TO_IMPORT_THESE /* -------------------------------------------------------------------------- * [...1703 lines suppressed...] * You may not free it. This should be used in conjunction with * SetILFunctionBody. */ [ object, uuid(A0EFB28B-6EE2-4d7b-B983-A75EF7BEEDB8), pointer_default(unique), local ] interface IMethodMalloc : IUnknown { /* * Tries to allocate memory above the start address of the module from * which it was created. It is important to note that this method may * fail to allocate the memory specified above the start address, and * may as a result return E_OUTOFMEMORY. */ void *Alloc( [in] ULONG cb); } --- NEW FILE: corprof.tlb --- (This appears to be a binary file; contents omitted.) Index: nunit.framework.dll =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/lib/nunit.framework.dll,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsvzcnOg and /tmp/cvsIU8mPl differ |
From: <gc...@us...> - 2004-01-08 21:12:00
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data In directory sc8-pr-cvs1:/tmp/cvs-serv6435/DotNetMock.Framework/Data Modified Files: MockDataParameterCollection.cs Log Message: Add IDataParameter references Index: MockDataParameterCollection.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data/MockDataParameterCollection.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MockDataParameterCollection.cs 5 May 2003 01:42:05 -0000 1.9 --- MockDataParameterCollection.cs 8 Jan 2004 21:11:58 -0000 1.10 *************** *** 121,125 **** for (int i = 0; i < _actualCollection.Count; i++) { ! MockDataParameter mockDP = (MockDataParameter) _actualCollection[i]; if (mockDP.ParameterName.Equals(parameterName)) { --- 121,125 ---- for (int i = 0; i < _actualCollection.Count; i++) { ! IDataParameter mockDP = (IDataParameter) _actualCollection[i]; if (mockDP.ParameterName.Equals(parameterName)) { *************** *** 144,148 **** for (int i = 0; i < _actualCollection.Count; i++) { ! MockDataParameter mockDP = (MockDataParameter) _actualCollection[i]; if (mockDP.ParameterName.Equals(parameterName)) { --- 144,148 ---- for (int i = 0; i < _actualCollection.Count; i++) { ! IDataParameter mockDP = (IDataParameter) _actualCollection[i]; if (mockDP.ParameterName.Equals(parameterName)) { |
From: <gc...@us...> - 2004-01-08 19:38:45
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock Modified Files: DotNetMock.csproj Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/DotNetMock.csproj,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DotNetMock.csproj 1 Apr 2003 01:43:56 -0000 1.11 --- DotNetMock.csproj 8 Jan 2004 19:38:42 -0000 1.12 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{1AD0CD00-16FA-4456-B2ED-A47406957228}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{1AD0CD00-16FA-4456-B2ED-A47406957228}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "DotNetMock" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" |
From: <gc...@us...> - 2004-01-08 19:38:45
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1:/tmp/cvs-serv16826 Modified Files: DotNetMock.sln Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.sln =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.sln,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** DotNetMock.sln 16 Dec 2003 05:49:12 -0000 1.9 --- DotNetMock.sln 8 Jan 2004 19:38:42 -0000 1.10 *************** *** 1,19 **** ! Microsoft Visual Studio Solution File, Format Version 7.00 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Framework", "DotNetMock.Framework\DotNetMock.Framework.csproj", "{514DAB7F-4A05-4343-9BF5-2C3DC60A431D}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Framework.Tests", "DotNetMock.Framework.Tests\DotNetMock.Framework.Tests.csproj", "{32FE638B-E5ED-4886-8F1B-5E35AE6289A5}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock", "DotNetMock\DotNetMock.csproj", "{1AD0CD00-16FA-4456-B2ED-A47406957228}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Tests", "DotNetMock.Tests\DotNetMock.Tests.csproj", "{0FBE418F-86AF-4E83-B66F-C0177CE582BC}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Examples", "DotNetMock.Examples\DotNetMock.Examples.csproj", "{80B98B32-57CB-4989-B506-0F2B0AD94DBA}" EndProject Global GlobalSection(SolutionConfiguration) = preSolution ! ConfigName.0 = Debug ! ConfigName.1 = Release ! EndGlobalSection ! GlobalSection(ProjectDependencies) = postSolution EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution --- 1,27 ---- ! Microsoft Visual Studio Solution File, Format Version 8.00 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Framework", "DotNetMock.Framework\DotNetMock.Framework.csproj", "{514DAB7F-4A05-4343-9BF5-2C3DC60A431D}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Framework.Tests", "DotNetMock.Framework.Tests\DotNetMock.Framework.Tests.csproj", "{32FE638B-E5ED-4886-8F1B-5E35AE6289A5}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock", "DotNetMock\DotNetMock.csproj", "{1AD0CD00-16FA-4456-B2ED-A47406957228}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Tests", "DotNetMock.Tests\DotNetMock.Tests.csproj", "{0FBE418F-86AF-4E83-B66F-C0177CE582BC}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Examples", "DotNetMock.Examples\DotNetMock.Examples.csproj", "{80B98B32-57CB-4989-B506-0F2B0AD94DBA}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection EndProject Global GlobalSection(SolutionConfiguration) = preSolution ! Debug = Debug ! Release = Release EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution |
From: <gc...@us...> - 2004-01-08 19:38:45
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock.Tests Modified Files: DotNetMock.Tests.csproj Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.Tests.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/DotNetMock.Tests.csproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DotNetMock.Tests.csproj 31 Dec 2003 19:28:58 -0000 1.4 --- DotNetMock.Tests.csproj 8 Jan 2004 19:38:42 -0000 1.5 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{0FBE418F-86AF-4E83-B66F-C0177CE582BC}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{0FBE418F-86AF-4E83-B66F-C0177CE582BC}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "DotNetMock.Tests" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" *************** *** 144,152 **** <File RelPath = "Dynamic\DynamicMockTests.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File - RelPath = "Dynamic\DynamicTests.cs" SubType = "Code" BuildAction = "Compile" --- 151,154 ---- |
From: <gc...@us...> - 2004-01-08 19:38:45
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock.Framework Modified Files: DotNetMock.Framework.csproj Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.Framework.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/DotNetMock.Framework.csproj,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** DotNetMock.Framework.csproj 31 Dec 2003 19:28:57 -0000 1.11 --- DotNetMock.Framework.csproj 8 Jan 2004 19:38:41 -0000 1.12 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{514DAB7F-4A05-4343-9BF5-2C3DC60A431D}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{514DAB7F-4A05-4343-9BF5-2C3DC60A431D}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "DotNetMock.Framework" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" |
From: <gc...@us...> - 2004-01-08 19:38:45
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock.Framework/Data Modified Files: MockCommand.cs Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: MockCommand.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data/MockCommand.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** MockCommand.cs 8 Apr 2003 04:27:11 -0000 1.5 --- MockCommand.cs 8 Jan 2004 19:38:41 -0000 1.6 *************** *** 182,186 **** public System.Data.IDataReader ExecuteReader(System.Data.CommandBehavior behavior) { ! throw new NotImplementedException("ExecuteReader with a CommandBehavior parameter currently not implemented."); } /// <summary> --- 182,187 ---- public System.Data.IDataReader ExecuteReader(System.Data.CommandBehavior behavior) { ! //TODO: Monitor Commandbehavior.CloseConnection parameter flags. For now, just pass call onto ExecuteReader() ! return ExecuteReader(); } /// <summary> |
From: <gc...@us...> - 2004-01-08 19:38:44
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock.Examples Modified Files: DotNetMock.Examples.csproj Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.Examples.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/DotNetMock.Examples.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DotNetMock.Examples.csproj 31 Dec 2003 19:28:57 -0000 1.3 --- DotNetMock.Examples.csproj 8 Jan 2004 19:38:41 -0000 1.4 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{80B98B32-57CB-4989-B506-0F2B0AD94DBA}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{80B98B32-57CB-4989-B506-0F2B0AD94DBA}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "DotNetMock.Examples" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" |
From: <gc...@us...> - 2004-01-08 19:38:44
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests In directory sc8-pr-cvs1:/tmp/cvs-serv16826/DotNetMock.Framework.Tests Modified Files: DotNetMock.Framework.Tests.csproj Log Message: Updated Solutions & Projects to VS.NET 2003 Removed NotImplemented exception from MockCommand.ExecuteReader( CommandBehavior ) Index: DotNetMock.Framework.Tests.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework.Tests/DotNetMock.Framework.Tests.csproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DotNetMock.Framework.Tests.csproj 30 May 2003 14:58:01 -0000 1.5 --- DotNetMock.Framework.Tests.csproj 8 Jan 2004 19:38:41 -0000 1.6 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{32FE638B-E5ED-4886-8F1B-5E35AE6289A5}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{32FE638B-E5ED-4886-8F1B-5E35AE6289A5}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "DotNetMock.Framework.Tests" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" |
From: <gc...@us...> - 2004-01-05 02:01:17
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1:/tmp/cvs-serv6910/DotNetMock Modified Files: AbstractExpectation.cs ExpectationArrayList.cs Log Message: Added ClearActual & ClearExpected calls to the constructor of AbstractCollection(string) Index: AbstractExpectation.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/AbstractExpectation.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** AbstractExpectation.cs 1 Apr 2003 01:43:56 -0000 1.9 --- AbstractExpectation.cs 5 Jan 2004 02:01:11 -0000 1.10 *************** *** 78,81 **** --- 78,83 ---- protected AbstractExpectation(string name) { this.name = name; + ClearActual(); + ClearExpected(); } /// <summary> Index: ExpectationArrayList.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/ExpectationArrayList.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ExpectationArrayList.cs 1 Apr 2003 01:43:56 -0000 1.9 --- ExpectationArrayList.cs 5 Jan 2004 02:01:11 -0000 1.10 *************** *** 58,63 **** public class ExpectationArrayList : AbstractExpectationCollection { ! private ArrayList _actualArrayList = null; ! private ArrayList _expectedArrayList = null; /// <summary> --- 58,63 ---- public class ExpectationArrayList : AbstractExpectationCollection { ! private ArrayList _actualArrayList = new ArrayList(); ! private ArrayList _expectedArrayList = new ArrayList(); /// <summary> |
From: <gc...@us...> - 2004-01-05 02:01:14
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation In directory sc8-pr-cvs1:/tmp/cvs-serv6910/DotNetMock.Examples/CustomExpectation Modified Files: ExpectationPerson.cs Log Message: Added ClearActual & ClearExpected calls to the constructor of AbstractCollection(string) Index: ExpectationPerson.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation/ExpectationPerson.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExpectationPerson.cs 5 Jan 2004 01:19:46 -0000 1.3 --- ExpectationPerson.cs 5 Jan 2004 02:01:11 -0000 1.4 *************** *** 11,16 **** public ExpectationPerson( string name ) : base( name ) { - ClearActual(); - ClearExpected(); } --- 11,14 ---- |
From: <gc...@us...> - 2004-01-05 01:19:49
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation In directory sc8-pr-cvs1:/tmp/cvs-serv911/DotNetMock.Examples/CustomExpectation Modified Files: ExpectationPerson.cs Log Message: Added ClearExpected call to constructor Index: ExpectationPerson.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation/ExpectationPerson.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ExpectationPerson.cs 2 Jan 2004 00:55:24 -0000 1.2 --- ExpectationPerson.cs 5 Jan 2004 01:19:46 -0000 1.3 *************** *** 12,15 **** --- 12,16 ---- public ExpectationPerson( string name ) : base( name ) { ClearActual(); + ClearExpected(); } |