我想制定出我的問題的最佳做法。我有一個類中的多個方法是創建新的對象:安裝員或構造師注射與單元測試
public void ToBeTested()
{
ClassForExmaple classForExample = new ClassForExample();
//Other logic.....
}
public void ToBeTested2()
{
ClassForExmaple2 classForExample2 = new ClassForExample2();
//Other logic.....
}
等.....
我有一個總的這些對象,我打算用構造注射大約5,但這似乎相當混亂。因爲有幾個應該使用私有財產,或者有另一種方式?
我這樣做,所以我能夠嘲笑這些新的呼叫。