Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Source / Free alternative of Typemock Isolator

Is there any F/OSS alternative of Typemock Isolator .NET?

like image 379
dr. evil Avatar asked Apr 05 '11 17:04

dr. evil


1 Answers

Disclaimer: I work at Typemock

Typemock Isolator utilizes the CLR Profiler API to perform IL rewriting, thus allowing you to fake (mock) static methods and concrete classes. As far as I know, Moles does similar things to Isolator in terms of using the Profiler to mock those things, and it's free (but not open source).

All other open source frameworks using the Dynamic Proxy to implement interfaces and abstract classes in runtime, therefore they cannot mock sealed/static classes.

like image 129
Igal Tabachnik Avatar answered Oct 05 '22 03:10

Igal Tabachnik