... Actually, it's quite easy to notice the error if you're doing test-driven development regardless of whether you're using code or data to generate your...
... I presume that the master resource file has labels in place of localized strings. Use Gold Master on that file. I presume that you have translated files...
Hi All, I was looking for an example where extreme programming is succesful in outsourced cases(software development outsourcing) to different geographies and...
Hi all! In my never ending quest to try to learn TDD (and play in areas where I have little experience), I'm trying to write a second generation of a small ...
... Well, I think I'd not be where you are. But if I were where you are, I'd write a test that opens a spreadsheet containing A1="Hello", and read the Hello...
... Thanks, Ron. I'll give it a try - reading just a cell from the spreadsheet. In that case, would you start with a test to see if you could just connect to...
I agree. I'd test a component that receives and Excel file name and returns "hello". In the first test I'd actually return a hard coded "hello" and then make...
... You have a cognitive mismatch here. The behaviors the user sees on the screen don't match the ones whose tests will seed this situation. Most spreadsheets...
... Well, I haven't looked at the code to connect, so I don't know. I suspect I'd write the test I described, read A1 from some file and find "Hello". ... The...
I thought I sent this last week, but found it sitting in my drafts... ... I think of it as writing acceptance tests for the vendor API. I don't want to depend...
... I'm not familiar with this. Do you know of any pointers to info on this? ... I wrote some stories. Here's a summary of what I have: 1 Statistics on current...
... Oh, let me clarify a bit. I get monthly reports from the National club office. The report contains the current membership information as an Excel...
... This certainly explains why we need to read Excel. But don't you already have an Excel reading capability then? I thought you were just starting on that....
... I'm trying to redesign, from scratch, an application to do all this, so that I can try it using TDD w/Java (learning exercise). So, I have a story that is...
I need your help finding a .NET unit testing framework, which supports the dynamic generation of tests. Background: We're building some smoke tests (in...
... False, since 2.19, there is a support for suites of tests, i.e. dynamic tests. See http://blog.dotnetwiki.org/archive/2004/07/19/625.aspx ... From: Mark...
... We can even do this the TDD way: [Test] [Repeat(5)] public void DrinkPint() { Jonathan jonathan = new Jonathan(); Pint pint = new Pint(); jonathan.Drink(...
... I had hoped to get to this, but it looks like it won't fit for me. Wish I could! Sorry! Ron Jeffries www.XProgramming.com Just because we learned something...
... http://www.xpsd.org/cgi-bin/wiki?RecursiveDescentParser ... I'm not sure for what you apologize. I too, upon occassion, have ignored your published source...
Hi, Everybody! XPAU is just a a little over a week away!! I've posted this to the XP list.. with a great response... and I apologize if you get this several...
Hi Phlip, I believe what you presented was the end result. I'd be more interested in seeing the intermediate steps - a little test, a little code, a little...
... I threw them all away. Sorry! Try this: http://www.xpsd.org/cgi-bin/wiki?TestDrivenDevelopmentTutorialRomanNumerals The NanoCppUnit built into the RDP...
I'm looking for some advice on how to proceed. I'm developing an application that has as its heart a third-party COM object. The actual COM object itself...