timvandesteeg

Results 2 comments of timvandesteeg
trafficstars

Thanks for all the examples, helped me a lot. One tip I want to share: ``` mockSerializationWriterFactory.Setup(factory => factory.GetSerializationWriter(It.IsAny())) .Returns(new JsonSerializationWriter()); ``` should be replaced with ``` mockSerializationWriterFactory.Setup(factory => factory.GetSerializationWriter(It.IsAny()))...