我正在尝试为我的问题制定最佳实践。我在一个类中有多个创建新对象的方法:
public void ToBeTested()
{
ClassForExmaple classForExample = new ClassForExample();
//Other logic.....
}
public void ToBeTested2()
{
ClassForExmaple2 classForExample2 = new ClassForExample2();
//Other logic.....
}
ETC.....
我总共有大约 5 个这样的对象,我打算在这些对象上使用构造函数注入,但这看起来很混乱。由于其中有一些,我应该改用私有属性还是有其他方法?
我这样做是为了模拟这些新的调用。