Perhaps we mean continous reduction of waste rather than elimination of waste? (I think continious reduction states more clearly that total elimination takes...
The Hamcrest Project [1] illustrates that good things happen when the developers of (unit) testing frameworks and tools for different programming languages...
Mark, my 2 cents-worth: - go over the basic ideas (red-green-refactor etc) - do a simple demo (e.g. the bowling game) - then pick something from the existing...
I read this on http://c2.com/cgi/wiki?UnitTestingIsDesign "Let's say you have a couple of degrees of freedom in an algorithm. I have five of these and seven of...
... I disagree with the number 5+7 tests, but I agree with 5+7+small constant. Suppose you have a composite method that does two things. Step 1 has four code...
... This I gotta see! "It's no good to anyone in your head, Mozart! Write it down!" ... J. B. (Joe) Rainsberger :: http://www.jbrains.ca Your guide to software...
... Hi Roman. I know this is an old post, but nobody posted the response that I was thinking about... now I have time... so here goes. This is a perfect...
On Fri, May 30, 2008 at 12:21 PM, Ron Jeffries ... The sketch is necessary to create the art, but maintaining the sketch over time to match the final painting...
... I believe the discussion was about something like: int MyMethod(...) { return 0; } .. being first production code after the first test case had been...
Olof Bjarnason
olof.bjarnason@...
Jun 5, 2008 5:21 am
28344
On Wed, Jun 4, 2008 at 11:21 PM, Olof Bjarnason ... Yes, and once you have the real code, you are happy to be done with the return 0; Deleted code ==...
Well, time permitted, I have done a little more on my TDD project and was wondering if anyone could let me know if I'm still doing ok or if I'm making a few...
jinjo - ... I have to say that seems a little odd to me too. ... I'm a little confused by what's going on here. There seem to be two key objects: the character...
On Thu, Jun 5, 2008 at 6:06 PM, jinjo <jinjouk@...<jinjouk%40hotmail.com>> ... I have to say that seems a little odd to me too. I use for loops if I...
I think my problem is mainly that I am really doing functional testing when I'm trying to do unit testing? note: I am using UnitTest++. For more info, I have a...
By FEST - I mean Alex Ruiz's tool: http://fest.easytesting.org/swing/wiki/pmwiki.php - I like the syntax in that it resembles jmock - but before I put a lot of...
Hi Mark, No experience here... I've just started working with RCP, so I'll be interested in this topic, too. Dale ... -- Dale Emery, Consultant Inspiring...
If you like jMock, you might also like WindowLicker http://code.google.com/p/windowlicker/ which is a Swing testing tool from the same stable... (also not...
... Why do you think so? As a matter of fact, this to me is the key aspect of TDD that makes the design evolve. -Sriram note: I am using UnitTest++. ... ...
Well after a lot of searching, I think I'm best to be using the Observer pattern? However this doesn't seem to allow the same implementation as I had above. It...
I started over with the tests, made the Move functions just one function. Also started an Input system Event Handler to deal with key presses, which made my...
... Hmmm - its written by Nat what's not to like. At a quick glance it looks very similar to FEST - but Nat doesn't seem as far a long. Is there any chance on...
... I think you're on the right path, with the Observer pattern and all. That is the "general idea" of events/handlers. Now I come from a C# world where this...
Olof Bjarnason
olof.bjarnason@...
Jun 9, 2008 3:40 pm
28357
... Here is how I would write the test: TEST(MoveCharacterRightWhenDKeyIsPressed) { float initialPosition = 1.0f; Character aCharacter(initialPosition); ...
Fixture Gallery 2.0 (release 2008-06-09) is now available for download from SourceForge. Fixture Gallery is a cookbook for FIT/FitNesse tests. It provides ...
Yeah I have decided it would be ok for character to know about events. I am adopting the observer pattern here now. I was over complicating by designing in my...
... BTW over on the aa-fft (Agile Alliance Functional ??? Test Group) I got a reference to SWTBot (http://swtbot.sourceforge.net/wiki/Main_Page) which is used...
Hi Mark, BTW over on the aa-fft (Agile Alliance Functional ??? Test Group) I got a ... Thanks for the link! It's aaftt (two Ts, not two Fs): Agile Alliance...
Hi everyone, Last night I posted about the community and testers and I wanted to get everyone's thoughts, especially with regard to people who are involved in...
The subject of your post is sort of a question I've been asking (myself) for some time, but with a different meaning. I'm developing an open source project,...