Bu sefer belirli parametrelerle çağrılan metotları simüle edeceğiz ve geri dönüş değerini ayarlayabileceğiz. Ayrıca, belirli bir metot çağrısını doğrulayabileceğiz. using System; using System.Collections.Concurrent; using System.Linq.Expressions; using System.Reflection; public class Mock<T> : DispatchProxy { private ConcurrentDictionary<string, object> _methodResponses = new(); private ConcurrentDictionary<string, int> _methodCalls = new(); protected override object Invoke...