I've a set of classes that generate messages, those messages are created using string.Format(), where the base string arrive from a resource file. My problem...
... It depends on the mock framework; this isn't a problem with mocks per se, just with many of the implementations. For example, easymock at www.easymock.org...
... I've done som TDD for Stored Procedures, bt I did it without any framework (I'll be sure to look into SPUnit!). The way I did it: We have all our SPs in...
... We often take for granted a simple ideal. The uproar over MS's "wizard-first" version of TDD is really because we have three kinds of "design" going on. -...
If there really is no logic in the business layer (seems somewhat doubtful in reality...) then why not skip directly to acceptance testing? I don't know if...
It's just a thought, but if it's an MFC project, have you included <stdafx.h> first? Your precompiled headers could be giving you grief... possibly. I'm not...
Had it happen to me; and I did not find a better way. I posted this issue to this list about 6 months ago or so, so maybe look back at the archive? ...
Has anyone else noticed that the right click menu items for TestDriven.NET disappear from time to time? The only way I've been able to get them back is by...
I'd have a class clsEntrySaver which is pretty much a activerecord object - it has properties that map to the database table. Then I'd have the presenter set...
If each developer ships a successful module and got 100% of the features in there within the scheduled timeframe and had 100%code coverage under tests, then...
Hi! Again, I'm modifying the money example to implement my first tests (in VC7). I need to use the C++ STL <valarray> class in the code I'm testing so my...
Maintaining flow between days, over the weekend, etc. is a challenging thing to do. I had a thought about using TDD to maintain flow, and I was wondering if...
Does anyone know of a way to test the HtmlInputFile control using NUnitAsp? I thought I would be able to create a custom NUnitAsp "Tester" class for the...
The NUnit 2.2.3 release contains two versions of each download: one built with .Net 1.1, one with .Net 2.0. So, what's the deal? Do we need separate versions?...
Sure. First, at least in C++, you can't compile/link a program that has unresolved symbols; therefore you have to create the class and/or method you're using...
Hi, I am trying very hard to follow XP personally with my .NET C# project. Using NUnit (this is a beaut) and so far so good. My immediate problem is this I...
I have signed up for the TDD seminar on the 29th of November. Do you know if anyone else is going from Austin? Thinking we might be able to ride-share and grab...
The NUnit 2.2.3 release on sourceforge now includes a version that is built against .Net 2.0. Charlie [Non-text portions of this message have been removed]...
I'm taking a 15 year old C program and translating it into C#. I am also putting it under test as I'm doing this. I'm just curious if anyone has any advise...
So, I'm modifying money to write my first tests and I get to the point where I want to write the first test to fail and I get a little stuck, so I go back and...
I'm about to start work on a BI web application. The two interesting parts of the app are the web UI, which is mostly charts, and the ETL and calculations in...
Recently I've been thinking about the difference between unit tests and integration tests. I recently wrote three low-level systems: a subsystem loader, a...
Hi all. I'm currently working on something which should be simple, but am finding myself a bit lost. Hope any of you can give me a good perspective. Her'es my...
Now that I've been knee deep in TDD for a while I've come to notice a recurring pattern that is a bit disturbing. I run into problems when there are...
If you employ a Geometry Model to layout your dialogs for you, then you can TDD the geometry model itself, and then let the rules take care of the rest. I...
Hi! In my off-list exchanges with K. Anderson, I hit on the idea of doing a TDD "Hello, world" in C++. I want to share what I got so far, 'cause I think I'm...
Another q stemming as much from my inexperience w/ OO as with TDD. When I begin an OO project, I try to identify the objects it will require, and then I set...