CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of moq
C#
class Program
{
   static void Main(string[] args)
   {
 
      try
      {
         var mock = new Mock<IService>();
         const long iterationCount = 1000000;
         Parallel.For(0, iterationCount, i => mock.Object.DoWork());
by Staxmanade   July 27, 2010 @ 9:51am
Tags: Moq, Bug, Exception
381 Views
no comments
 
C#
[TestClass]
public class HelpCenterServiceTest : BaseTest
{
    private Mock<IUnitOfWork> unitOfWork;
    private IHelpCenterService service;
 
    public static void MyClassInitialize(TestContext testContext)
    {
        IoCInitialize();
    }
by Fernando Claverino   December 28, 2009 @ 2:04pm
317 Views
1 comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate