I'm working on a piece of library code around IDisposable. The managed path (via using) is easily testable. I'm wondering about the finalizer though: Is calling System.GC.Collect() sufficient to force the finalizer to run?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
No, the GC.Collect() call is asynchronous, you would also need to call this:
|
|||||||||||||
|
|
I would take a look at Dispose, Finalization, and Resource Management its the best reference on the subject I know of. Using their pattern:
You wind up with dead simple Finalizer/Dispose() methods and a testable Dispose(bool). No need to force Finalization or anything using the GC class. |
|||
|
|
Could you mock out an |
|||
|
|
I think I would lean towards making Finalize() call another method, and test that the other method does what you want. You wouldn't get 100% code coverage, but at least you'd know that the method releases the object's resources properly. |
|||
|
|