I have a static class that wraps some native methods from winspool:

public static class WinSpool
{
     [DllImport("winspool.drv")]
     public static extern int OpenPrinter(string pPrinterName, out IntPtr phPrinter, IntPtr pDefault);
     ...
     //some more methods here
}

I would like to mock them for unit testing, but couldn't find a pattern for this. (Does everyone avoid static classes?)

link|improve this question

78% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Yes, static class is generally frowned upon in the field of unit testing and mocking. AFAIK no open source mocking framework ( such as Rhino Mocks) support static class mocking

If you absolutely and positively must mock static class, then I afraid that you must go for Typemock, which is not free.

link|improve this answer
1  
I find it ironic how static members are "frowned upon", when what we really should frown upon are mocking frameworks that cannot mock static members. After all, if TypeMock can do this, why can't OSS frameworks do the same? – Pavel Minaev Dec 1 '09 at 3:10
The reason for this is that most mocking frameworks implement mocks using the Proxy pattern, which essentially requires inheritance, and of course static classes cannot be inherited from. Typemock uses an entirely different approach, by redirecting method calls with IL injection, which gives it the power to mock static calls. – womp Dec 1 '09 at 3:11
2  
Because it is too expensive to be developed for free (stackoverflow.com/questions/1534119/…) – Graviton Dec 1 '09 at 3:12
I think a tool that would help mocking static classes is a extract interface and wrap implementation tool: stackoverflow.com/questions/5035188/… – user295190 Feb 17 '11 at 23:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.