私はmoqと私の問題のTfsプロパティ(ItemSet)、moqの使い方を使用しています.ItemSetは...
public sealed class ItemSet
{
public Item[] Items { get; }
public string Pattern { get; }
public string QueryPath { get; }
public override string ToString();
}
サンプル、
ItemSet allItems = versionControl.GetItems(@"$/");
ユニットテストとモッキングで書く方法は?