Jonathan Gilbert
Jonathan Gilbert
I am just using Google Chrome, pointed directly at the .svg files. In the case of the red peeking out from behind the yellow, it only shows up when it's...
Because it only specifies the order in which tests start executing. It doesn't require that test 2 actually finish before test 3 starts. It's also quite a clumsy way to...
@CharliePoole @rprouse @simoneb @oznetmaster You four are specifically listed under "About Us" on the main NUnit web page, any possibility you could provide some direction in this regard? :-)
@CharliePoole Thanks for the reply! I do appreciate the context.
For chaining methods, the thought that comes to mind is to make a special builder type for "a WhenCalled that has been DoNotCallBase'd that we might want to Do an...
The enhancement discussed in #622 solves the `.When(...).DoWithCallingBase()` problem: if you want the base implementation to run when it wouldn't normally run, then just end your action with `callInfo.CallBase()`.
Sorry, yeah, I should have been more explicit. The subject under test has code like this: ``` using (var context = client.BeginScope()) { context.Configure(..); DoOtherThings(client); } ``` The client object...
This code is untested, in part because I wrote it right in the text input on the GitHub issue page, but also because it makes use of both the `CallBase`...
@zvirja I have a couple of responses from my position here on the outside :-) 1. Why does `CallInfo` not make sense for `.When(..).Do(..)`? That's the only way to attach...
Some further context on this -- we have a service that, among other things, includes two methods that drive a load-modify-store model for working with the data. But, the "load"...