I've seen a post about unit testing dating back to 2008. Has anything changed on this front? I would like to write a unit test for a custom strategy that uses a strategy object internally. Is there a way to mock a strategy object, does it implement a interface? I noticed a lot of objects passed are using interfaces (IExecution, IOrder, etc). Is there a sample out there on how to do this?
Thanks.

Comment