I have a vague plan to subclass Nmock's DynamicMock and then override Expect so that I can reflect on the to-be-mocked interface, then delegate to the base...
As for the serious bit of this post.. I think the comparison is a bit unfair. Even though i haven't made a systematic analysis of both posts.. I think that...
Check out RhinoMocks. It is a much superior framework to NMock. It supports what you are looking for. ... -- http://www.coreyhaines.com [Non-text portions of...
Corey, you are right - I ought to - it's just that it's <grumble> yet another thing to learn </grumble>. Does RhinoMock *not* support something else? Or is the...
John, I think you'll find that the syntax is very similar for the most part. Plus, there is pretty good documentation on the Rhino.Mocks website and Ayende is...
Hi folks, Since folks occasionally pose NUnit questions here, which I generally try to answer, I thought I'd let you know I won't be monitoring the list in May...
Hi Szabolcs, ... Thanks for posting the scenario. It's a lot of work to narrate something like that into an email but there's a big audience out there that...
... Thanks for your comment. It does not really affect the basic idea of how to TDD code for multi-threaded programs. If state inquiry is not available or not...
Note: No Unit tests just implementation code. public void SubmitApplication1() { ServiceLocater serviceLocater = new ServiceLocater(); SubmissionApplication...
... I'm sure the mods could set-up a redirect to have the traffic from the list to your personal email. ;) Have safe travels, and I'll try to forward any...
... I propose that it does not matter. I recommend instead that you aim to follow the mantras Once and Only Once (OAOO), or Don't Repeat Yourself (DRY). Pick...
TypeMock is another good one. And I haven't used NMock2 in a bit, but that's an easier transition. rob. From: testdrivendevelopment@yahoogroups.com ...
I'm trying to make sense of my continuing experiences with MVP and the TDD process. In MVP we see some clear lyers of software: View and Presentation, and to...
... Why is your SubmitApplication validating the data? It seems like that should be the responsibility of the SubmissionApplication. In other words, you should...
This release fixes several issues with NUnit 2.4 and makes some minor improvements. See the release notes at http://nunit.com/?p=releaseNotes&r=2.4.1 for...
Have you tried Presenter First? That is how I do my triads. I start TDD with the presenter, which helps me define the interfaces required for the view and...
Hi all! I need some input on the "one assert per test" issue when a number of things are to be checked after an operation. Say the operation requires...
Robert, Thanks for taking the time and your comments. As mentioned, this is the first "public" exposure of some of these thoughts. "<mdt>" syntax is used to...
... If you need data setup for the entire test suite, you should probably use TestFixtureSetUp: http://nunit.org/index.php?p=fixtureSetup&r=2.4 However, you...
Hello, andreas.axelsson. On Friday, May 4, 2007, at 4:39:34 AM, ... Personally I don't usually find multiple assertions per test hard to understand, though...
Mary & Tom Poppendieck will talk with us on May 9th in Charlotte, NC. Topic: Beyond Agile Software Development - Becoming Lean. Lean thinking has had a...
Yesterday, I spent most of the day on a last minute project that was very important. I had a bunch of people waiting for it, and the pressure was very high. So...
OK - I have been doing the TDD thing for quite some time and I am there with it. I have been chartered within my organization (very large investment bank) with...
I am new to TDD, general info for the my app is i am using vs2003 and nunit 2.4, this app implements webservice by using SoapClient and SoapService. I need to...
... Heck, I've had experience in /small/ teams implementing TDD that was extremely difficult. The biggest challenge is that if you try to implement TDD across...
This is why I like to start with Scrum, which gives teams self-direction, self-responsibility, short term goals, a baseline of delivery performance, and the...