The trick is to make these methods public
:
[TestInitialize()]
public void Setup()
{
_factory = new Factory();
_factory.Start();
}
When they are private
they do not execute.
The trick is to make these methods public
:
[TestInitialize()]
public void Setup()
{
_factory = new Factory();
_factory.Start();
}
When they are private
they do not execute.