I'm attempting to test an async process where multiple requests are made to a service with different values which result in multiple completion events being raised.
The app is WP7 application with the code & tests in WP7 Class Library projects, all other tests (with mocks) works fine it is only this test I cannot get to work.
The test is:
[Test]
public void Should_referesh_all_stocks_held_in_collection()
{
var fakeStockService = new Mock<IStockService>();
var msftStock = new StockViewModel { Symbol = "MSFT", Name = "Microsoft", Price = 12.5m, Change = "+1" };
var googStock = new StockViewModel { Symbol = "GOOG", Name = "Google", Price = 12.0m, Change = "-1" };
var target = new StockSummaryViewModel(fakeStockService.Object);
target.Stocks.Add(msftStock);
target.Stocks.Add(googStock);
fakeStockService.Setup(s => s.GetStock("MSFT"))
.Raises(s => s.StockQuoteReceived += null, new StockQuoteEventArgs(new QuoteReceived { Symbol = "MSFT", Name = "Microsoft Corp", Last = "13.5", Change = "+1" }));
fakeStockService.Setup(s => s.GetStock("GOOG"))
.Raises(s => s.StockQuoteReceived += null, new StockQuoteEventArgs(new QuoteReceived { Symbol = "GOOG", Name = "Google", Last = "11.5", Change = "-0.5" }));
target.Refresh();
Assert.AreEqual(2, target.Stocks.Count);
var stock = target.Stocks.Single(s => s.Symbol == "MSFT");
Assert.IsTrue(stock.Change == "+1" && stock.Price == 13.5m);
stock = target.Stocks.Single(s => s.Symbol == "GOOG");
Assert.IsTrue(stock.Change == "-0.5" && stock.Price == 11.5m);
}
The test is failing because the second event isn't fired instead the first raise fires twice.
What am I missing?
Raisessetup it is working as expected, and I'm not able to repro your issues I get different event args for the different invocations. So I guess the problem is somewhere in your implementation. Can you post yourRefreshmethod and how and where do you subscribe on theStockQuoteReceivedevent or maybe the fullStockSummaryViewModel? – nemesv Aug 13 '12 at 12:41