From: Choy R. <ch...@us...> - 2005-01-26 01:25:53
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20700/DotNetMock Modified Files: Tag: RFE_1098585 Assertion.cs DotNetMock.csproj Log Message: Added support for dynamically generated binding for csUnit. Index: Assertion.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/Assertion.cs,v retrieving revision 1.5.4.1 retrieving revision 1.5.4.2 diff -C2 -d -r1.5.4.1 -r1.5.4.2 *** Assertion.cs 25 Jan 2005 06:20:49 -0000 1.5.4.1 --- Assertion.cs 26 Jan 2005 01:24:34 -0000 1.5.4.2 *************** *** 41,44 **** --- 41,48 ---- stubMaker = new MbUnitStubMaker(providerAssembly); } + else if ( (providerAssembly = TryToLoadAssembly("csUnit"))!=null ) + { + stubMaker = new csUnitStubMaker(providerAssembly); + } if ( stubMaker==null ) { Index: DotNetMock.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/DotNetMock.csproj,v retrieving revision 1.30.2.1 retrieving revision 1.30.2.2 diff -C2 -d -r1.30.2.1 -r1.30.2.2 *** DotNetMock.csproj 25 Jan 2005 06:20:49 -0000 1.30.2.1 --- DotNetMock.csproj 26 Jan 2005 01:24:56 -0000 1.30.2.2 *************** *** 355,358 **** --- 355,363 ---- /> <File + RelPath = "TestFramework\csUnitStubMaker.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "TestFramework\IStubMaker.cs" SubType = "Code" |