Vagif Abilov's blog on .NET

Browse by Tags

All Tags » TypeMock (RSS)
Mock framework challenges in F#
Getting mock framework API rigth is uneasy task. Mock framework designers don’t have as much freedom as designers of other libraries: the purpose of a mock framework is not to expose an arbitraty API (unknown at the time of mock framework design) and...
Impression from Typemock Academy
I have written a guest post about my impressions from Typemock Academy that was published in Typemock blog.
.NET mocking framework comparison
A couple of good sources for those who need to decide: Capability comparison made by Morgan Soley. Half year old but with a feature comparison table. Recently updated comparison by Andrew Kazyrevich. TypeMock Isolator is a clear winner if it fits in your...
ASP.NET Bundle from TypeMock
TypeMock is has announced ASP.NET Bundle (consisting of Isolator and Ivonna). Being TypeMock user and customer, I am distributing their announcement. The text below is not mine – it’s written by TypeMock and explains how to get a free ASP.NET Bundle license...
TypeMock Isolator and matching faked method’s arguments – part 3
Part 1 Part 2 I promised to address matching reference and output arguments using lambda-based syntax that I proposed for TypeMock Isolator. Before getting there I would like to retract my original comment that faked method’s arguments should be matched...
TypeMock Isolator and matching faked method’s arguments – part 2
I was glad to see that my thoughts about figuring out the best syntax to control the match of faked method’s arguments haven’t been unnoticed by TypeMockians. Eli Lopian raised a few questions, and addressing them seems to be crucial for materialization...
How I would match faked method's arguments if I was TypeMock Isolator
I enjoy compactness and clarity of TypeMock Isolator AAA syntax. But it still lacks certain features in comparison with the original RecordExpectation-based syntax. One of such features is support for exact match of method's attributes. Here's...