Release
We are excited to announce new JustMock internal build release published today. It's our second internal build after 2011 Q1 release. In the past weeks the product team has been focused mainly on polishing JustMock but hasn’t forgotten to add new stuff as well. Here is a comprehensive list of the functionalities that have been added and improved in the latest internal build including thorough examples: What’s new: New : Deep LINQ mocking support (mocking join query):
Example (Details can be found in the LinqFixture.cs under the supplied examples): var simple = new SimpleData(); Mock.Arrange(() => simple.Products).ReturnsCollection(GetFakeProducts()); Mock.Arrange(() => simple.Categories).ReturnsCollection(GetCategories()); var...