Coder Social home page Coder Social logo

Comments (1)

alexandrnikitin avatar alexandrnikitin commented on June 15, 2024

Hi @Jekops,
Thank you for the great repro! I copied the relevant parts below

public class Parent : IDisposable
{
    private IChild m_Child;

    public Parent(IChild child)
    {
        m_Child = child;
        m_Child.Changed += Child_Changed;
    }

    public void Dispose()
    {
        m_Child.Changed -= Child_Changed;
        m_Child = null;
    }

    private void Child_Changed(object sender, EventArgs args)
    {
    }
}

public class ParentTest : IDisposable
{
    // this field holds a reference to the substitute created below
   // the object is still available in the Dispose method and not reclaimed by GC yet
    // because this instance of ParentTest is still alive
    private IChild m_Child;
    private Parent m_SUT;

    public ParentTest()
    {
        m_Child = Substitute.For<IChild>();
        m_SUT = new Parent(m_Child);
    }

    public void Dispose()
    {
        m_SUT.Dispose();
        m_SUT = null;
        // 
    }
}

NSubstitute keeps the state and setup in its instances. It's an instance of IChild substitute in this case. When you subscribe to the event with m_Child.Changed += Child_Changed; it also keeps a reference to the current instance of the Parent class.

The observed behavior happens because an instance of the ParentTest test class keep a reference to the substitute and its state in its field m_Child. So it looks like this xUnit -> ParentTest -> Substitute.For<IChild> -> Parent. The field will be reclaimed by GC after the ParentTest (note: oversimplified, GC is a complex beast).

Or you can assign the field to null in your Dispose method then you will get what you want:

public void Dispose()
{
    m_Child = null;
    m_SUT.Dispose();
    m_SUT = null;
}

I hope it helps.

from nsubstitute.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.