我有一些代碼,我有一個假的配置根。我想檢查是否有電話設置配置值。 var fakeConfigRoot = A.Fake<IConfigurationRoot>();
//Do something that will set config item
//A call to set the config must have happened
是可能的假讓使用 A.CallTo(() =>
我遇到了一些FakeItEasy的奇怪問題。 想象一下以下的單元測試方法: [TestMethod]
public void DeletePerson_WhenCalled_ThenPersonIsDeleted()
{
const int personId = 24;
var commonParam = new CommonParam();
this.test
我需要你的幫助,以便找到一種方法來驗證嵌套對象的值作爲被測試方法調用的參數傳遞。 假設這個類: public class AuditTrailValueObject
{
public ActionType Action { get; private set; }
public EntityType EntityType { get; private set; }
p