|
From: <sm...@us...> - 2003-08-08 00:05:06
|
Update of /cvsroot/nmock/nmock
In directory sc8-pr-cvs1:/tmp/cvs-serv5316
Modified Files:
nmock.sln
Log Message:
Added Invocation and MethodSignature to collect data values together.
Include type name in error reports
Tidied up MockTest.
Index: nmock.sln
===================================================================
RCS file: /cvsroot/nmock/nmock/nmock.sln,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** nmock.sln 24 Jul 2003 23:09:23 -0000 1.3
--- nmock.sln 8 Aug 2003 00:05:03 -0000 1.4
***************
*** 1,33 ****
Microsoft Visual Studio Solution File, Format Version 8.00
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "src", "src\src.csproj", "{4859B9E5-3F65-4517-878C-AFC58B9D0035}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{2735C01B-475D-4B75-AF30-C00D9A977E58}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sample", "sample\sample.csproj", "{77AB0622-D9F4-4D60-9A13-73703FE41788}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Global
- GlobalSection(SourceCodeControl) = preSolution
- SccNumberOfProjects = 4
- SccProjectName0 = Perforce\u0020Project
- SccLocalPath0 = .
- SccProvider0 = MSSCCI:Perforce\u0020SCM
- CanCheckoutShared = true
- SolutionUniqueID = {D1A7C12C-013C-4686-A687-CEC9585CDE0D}
- SccProjectUniqueName1 = src\\src.csproj
- SccLocalPath1 = src
- CanCheckoutShared = true
- SccProjectUniqueName2 = test\\test.csproj
- SccLocalPath2 = test
- CanCheckoutShared = true
- SccProjectUniqueName3 = sample\\sample.csproj
- SccLocalPath3 = sample
- CanCheckoutShared = true
- EndGlobalSection
GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
--- 1,16 ----
Microsoft Visual Studio Solution File, Format Version 8.00
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{2735C01B-475D-4B75-AF30-C00D9A977E58}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "sample", "sample\sample.csproj", "{77AB0622-D9F4-4D60-9A13-73703FE41788}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
! Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "src", "src\src.csproj", "{4859B9E5-3F65-4517-878C-AFC58B9D0035}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
***************
*** 35,42 ****
EndGlobalSection
GlobalSection(ProjectConfiguration) = postSolution
- {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Debug.ActiveCfg = Debug|.NET
- {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Debug.Build.0 = Debug|.NET
- {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Release.ActiveCfg = Release|.NET
- {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Release.Build.0 = Release|.NET
{2735C01B-475D-4B75-AF30-C00D9A977E58}.Debug.ActiveCfg = Debug|.NET
{2735C01B-475D-4B75-AF30-C00D9A977E58}.Debug.Build.0 = Debug|.NET
--- 18,21 ----
***************
*** 47,50 ****
--- 26,33 ----
{77AB0622-D9F4-4D60-9A13-73703FE41788}.Release.ActiveCfg = Release|.NET
{77AB0622-D9F4-4D60-9A13-73703FE41788}.Release.Build.0 = Release|.NET
+ {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Debug.ActiveCfg = Debug|.NET
+ {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Debug.Build.0 = Debug|.NET
+ {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Release.ActiveCfg = Release|.NET
+ {4859B9E5-3F65-4517-878C-AFC58B9D0035}.Release.Build.0 = Release|.NET
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
|