vote up 6 vote down star
1

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?

flag

69% accept rate
If you stick to the prescribed pattern for IDisposable, I'm sure that unit testing it is going to be that useful. – Mitch Wheat Oct 29 '08 at 10:49
sorry, that should have been "I'm not sure that unit testing it is going to be that useful... – Mitch Wheat Oct 29 '08 at 10:58
@Mitch: implementing IDisposable correctly, so that managed and unmanaged resources are disposed of at the right moment is not trivial. As the library code in question is responsible for exactly that I don't see a point in not testing that ... – David Schmitt Oct 29 '08 at 11:01

4 Answers

vote up 5 vote down check

No, the GC.Collect() call is asynchronous, you would also need to call this:

System.GC.WaitForPendingFinalizers();
link|flag
1  
Thanks a heap! I knew why I asked :-) – David Schmitt Oct 29 '08 at 10:59
I think the GC.Collect() itself is synchronous (i.e. it will have freed any memory it can by the time it returns) but the finalizers themselves run separately. I could be entirely wrong though... – Jon Skeet Oct 29 '08 at 11:06
I'm doing both now and the test passed every time. That is, called the correct extension point from the finalizer. – David Schmitt Oct 29 '08 at 21:53
Note to self: also check that the initialisation code of the class in question doesn't "root" the object somewhere. – David Schmitt Oct 30 '08 at 21:39
"Thanks a heap!" LOL, no pun intended... – Even Mien Apr 24 at 13:24
vote up 0 vote down

Could you mock out an IDisposable interface and expect a call to Dispose? That would at least let you see when the object is actually disposed.

link|flag
Setting a breakpoint is sufficient to discover that. I'm testing the Dispose()'s implementation though, not whether it's called. – David Schmitt Jan 24 at 20:12
vote up 0 vote down

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.

link|flag
vote up 1 vote down

I would take a look at Dispose, Finalization, and Resource Management its the best reference on the subject I know of. Using their pattern:

~ComplexCleanupBase()
{
    Dispose(false);
}

public void Dispose()
{
    Dispose(true);
    GC.SuppressFinalize(this);
}

protected override void Dispose(bool disposing)
{
   if (!disposed)
   {
        if (disposing)
        {
            // dispose-only, i.e. non-finalizable logic
        }

        // new shared cleanup logic
        disposed = true;
    }

    base.Dispose(disposing);
}

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.

link|flag
Yeah, I'm doing it quite like that. It's only a slight adaptation of what's recommended in the MSDN. – David Schmitt Feb 12 at 7:52

Your Answer

Get an OpenID
or

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