It's not working... The FinalBuilder standard action doesn't work at all. I can't use mstest.exe with a vsmdi and also supply a testlist and the location of the results file. I think it expects only one parameter.
Anyway, I'm trying to run TMockRunner.exe and it does execute the tests, but it says I can't use the recorder.Return(true) line in the following code:
Product product = new Product();
using (RecordExpectations recorder = RecorderManager.StartRecording())
{
product.ProductExtras.Any(pe => pe.ExtraREF == 66);
recorder.Return(true);
product.ProductExtras.Any(pe => pe.ExtraREF == 87);
recorder.Return(true);
}
Any ideas?
Edit : w000t, I'm advanced now! :)