Sto lavorando su un codice che segue un modello di incapsulare tutti gli argomenti su un metodo come oggetto "richiesta" e restituire un oggetto "risposta". Tuttavia, questo ha prodotto alcuni problemi quando si trattava di deridere con MOQ. Per esempio:Valore di stub della MOQ su oggetto "Qualsiasi"
public class Query : IQuery
{
public QueryResponse Execute(QueryRequest request)
{
// get the customer...
return new QueryResponse { Customer = customer };
}
}
public class QueryRequest
{
public string Key { get; set; }
}
public class QueryResponse
{
public Customer Customer { get; set; }
}
... nel mio test voglio stub la query per restituire al cliente quando la chiave è dato
var customer = new Customer();
var key = "something";
var query = new Mock<ICustomerQuery>();
// I want to do something like this (but this does not work)
// i.e. I dont care what the request object that get passed is in but it must have the key value I want to give it
query.Setup(q => q.Execute(It.IsAny<QueryRequest>().Key = key)).Returns(new QueryResponse {Customer = customer});
è quello che voglio possibile nel MOQ?
Bello, grazie! – nashwan