views:

38

answers:

0

I'm looking for a tool for .NET libraries that:

given: a 3rd party library with only concrete implementations of classes

produces: extracts an interface from the 3rd party library and creates an adapter to the concrete implementation

I have some pretty big 3rd party tools... doing it by hand looks like a pain. I'm hoping to be able to decouple my design so I can mock these tools in my unit tests, and make it more extendable in the future.

I'm pretty sure this exists somewhere, there was mention of this functionality at SVCC this weekend.