problem about partial-mocks-Collection of common programming errors


  • Chad Kapatch
    unit-testing rhino-mocks-3.5 partial-mocks
    I am trying to test a class similar to the example below:public class Service : IService {public string A(string input){ int attemptCount = 5;while (attemptCount > 0){try{return TryA(input);}catch (ArgumentOutOfRangeException){attemptCount–;if (attemptCount == 0){throw;}// Attempt 5 more timesThread.Sleep(1000); } }throw new ArgumentOutOfRangeException(); }public string TryA(string input){// try actions, if fail will throw Argum

Web site is in building