Can anyone explain to me how to verify mocks if you don t have their Moq-wrapper? MockFactory.Verify()
won t do. I want to be able to verify the mocks explicitly and mocks should be created using mockfactory! Please send in your comments.
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...