With NSubstitute, is there any way to capture the value you pass to a property setter? E.g. if I have the following interface:
I am getting a behaviour I didnt expect from NSubstitute when setting up my mocks to call a function. A simplified version of the behavuiour is
I have an issue with NSubstitute compiling using its inference typing. When I set it up with more than a return type in my .Do() statement and then try and use a counter to see how many times it is ca
I am using the repository pattern in an MVC 3 applicati开发者_StackOverflow社区on I am currently developing.My repository interface looks as follows:
Does NSubstitute support the idea of Partial Mocks? http://nsubstitute.github.com/ http://www.ayende.com/wiki/Rhino+Mocks+Partial+Mocks.as开发者_如何转开发hxUpdate: As @Brian points out, NSubstitute
I have the following method signature in my iterface: void SetItem(ref AddressItem item); I do a parameter constraint like this:
I am doing a query to return all users shopping carts, stored in the sb_carts table. The product information stored in sb_carts is referenced over two keys product_sku and school_id. It needs to refer
How Do I deploy applications so that they require administrator rights witho开发者_如何学运维ut the end-user doing that by hand?