Search the web
Sign In
New User? Sign Up
testdrivendevelopment · Test-driven Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 8247 - 8276 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8247
I've taken several stabs at testing GUIs, and still do a certain amount of it, but am becoming skeptical of the endeavor. This isn't because of technical...
Daniel Gackle
slightlynew
Offline Send Email
Feb 1, 2005
8:46 am
8248
... Not in card shuffling. Anyway, drip under pressure and all that ... I'm just some guy talking about what I'd do. ... I'm not sure what you're envisioning...
Ron Jeffries
ronaldejeffries
Offline Send Email
Feb 1, 2005
10:59 am
8249
... Lucky for me I am at home reading this and have access to my books. I am familiar with static code analizers but I am not sure what is meant by "model...
SirGilligan
Offline Send Email
Feb 1, 2005
1:31 pm
8250
I agree completely, and that's why I think I like the Humble Dialog approach. That approach practically forces you to keep business logic out of the GUI,...
Mike
ocean_west_2005
Offline Send Email
Feb 1, 2005
2:04 pm
8251
... That's the thing: When mundane controls provide an "ownerdraw" system, they provide back-doors to override part of their paint events. (That's how your...
Phlip
phlipcpp
Offline Send Email
Feb 1, 2005
3:01 pm
8252
I've been developing a web app in ASP.NET using TDD. For myself, I've come to realize that you get the best benefits of TDD if you push as much business logic...
Robert Hanson
mvarobert1
Offline Send Email
Feb 1, 2005
4:02 pm
8253
... Okay, you're the expert on TDD :-). Definitely more so than I. ... Sounds like you've already picked out an algorithm (that's not a problem description,...
William Tanksley, Jr
wtanksle
Offline Send Email
Feb 1, 2005
4:16 pm
8254
... As a rule, I'd ignore the randomness issue, trusting that I have or can get a random number generator that will be random. I would instead test sequence of...
Ron Jeffries
ronaldejeffries
Offline Send Email
Feb 1, 2005
8:42 pm
8255
I am sure that I will have questions. Would you prefer that I ask them to you in this group or should I email them to you directly? If email, let me know what...
Joe or Mary Uchytil
juchytil
Offline Send Email
Feb 1, 2005
9:42 pm
8256
Hi, I've been playing again with "zero button testing" - correctness coloring as you type, much like David Saff's Automated Continuous Testing. The latest...
Carl Manaster
cmanaster
Offline Send Email
Feb 2, 2005
6:55 am
8257
Joe, Dominique, I'd prefer to see the questions and answers here in this group. Glenn...
Glenn Halstead
glenntdhalstead
Offline Send Email
Feb 2, 2005
11:45 am
8258
When do you change your unit tests after refactoring? For example, I run my tests; get a green bar. Then I refactor by moving a method from one object to...
Robert Hanson
mvarobert1
Offline Send Email
Feb 2, 2005
5:13 pm
8259
TDDers: Try this: Install Visual Studio 7, and install NUnit 2.2 Double click on: C:/Program Files/NUnit 2.2/src/samples/csharp/csharp-sample.csproj Hit <F10>....
Phlip
phlipcpp
Offline Send Email
Feb 2, 2005
6:52 pm
8260
... No, I got it to. But I read somewhere that was a bug in their installation, but for the life of me I can't find where I read that. Cory...
Cory Foy
Cory.Foy@...
Send Email
Feb 2, 2005
7:01 pm
8261
... Thanks, J.B. I'm finally getting back to this. It seems I need to pass in the web.xml file AND the context path. Like: String contextPath =...
George Dinwiddie
gdinwiddie
Offline Send Email
Feb 2, 2005
7:07 pm
8262
... that. ... Due to an issue that has not been adequately addressed in the installation procedure you will have to refresh the reference to the...
Carl Manaster
cmanaster
Offline Send Email
Feb 2, 2005
7:18 pm
8263
Should you not amend the Unit tests to reflect the desired result of the refactoring prior to actually implementing the refactoring (if appropriate)? If it is...
bodey.jan@...
janbodey
Offline Send Email
Feb 2, 2005
7:43 pm
8264
According to what I've been reading about refactoring, the idea is to produce "better code" that works the same. So the cycle is "green bar; refactor; green...
Robert Hanson
mvarobert1
Offline Send Email
Feb 2, 2005
7:54 pm
8265
Not if it's going to give you a red bar before you make the change. Fowler's book explains this in some detail, but let's take the example of moving a method...
David Chelimsky
dchelimsky
Offline Send Email
Feb 2, 2005
8:04 pm
8266
... Actually, that should be: File webXml = new File("/home/george/workspace/MyProj/WebRoot/WEB-INF/web.xml"); assertTrue(webXml.canRead()); ServletRunner sr =...
George Dinwiddie
gdinwiddie
Offline Send Email
Feb 2, 2005
9:30 pm
8267
... I fixed it using Project -> Add Reference. Now I wonder why I can't just execute the test cases - why are they a DLL, and am I expected to I will fix this...
Phlip
phlipcpp
Offline Send Email
Feb 2, 2005
11:04 pm
8268
... I'm glad you got to the next step. Enjoy. ... Of course! If you're in Toronto, Ottawa or Vancouver any time soon, you can even buy a signed copy, if you...
J. B. Rainsberger
nails762
Offline Send Email
Feb 2, 2005
11:35 pm
8269
... From: "bodey.jan@..." <bodey.jan.at.mtvne.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Feb 3, 2005
12:05 am
8270
... Yay! We got a green bar. It turns out we don't need to register the JspServlet, but we *do* need to include the commons-el.jar on the classpath. <sigh> ...
George Dinwiddie
gdinwiddie
Offline Send Email
Feb 3, 2005
12:46 am
8271
... When the merged or derived thing grows important enough to document its interface. If it ain't important, then it's just an encapsulated detail of the ...
Phlip
phlipcpp
Offline Send Email
Feb 3, 2005
3:22 am
8272
John Roth wrote:- ... Whilst agreeing with the sentiment here, I don't see that an Extract Method refactoring should produce a public method, IME it always...
John Mullins
angelina_mul...
Offline Send Email
Feb 3, 2005
9:36 am
8273
... Robert, I have found (through both advice and experience) that cruft builds up in the unit tests the same way it does in production code. Therefore unit...
George Dinwiddie
gdinwiddie
Offline Send Email
Feb 3, 2005
3:46 pm
8274
All, [[This is the first announcement of this project on this list. If you're interested, please visit http://pag.csail.mit.edu/continuoustesting and...
David Saff
dsaff
Offline Send Email
Feb 3, 2005
4:44 pm
8275
... change. David, I'm still new at this, working solo and only 16 months, but... Why couldn't you: 1) start from green bar 2) move the unit test, 3) get a red...
Stew Stryker
stewstryker
Offline Send Email
Feb 3, 2005
7:21 pm
8276
As long as we are refactoring, we are not changing behaviour, and we should not need to add new tests. I see why you want to add the new tests, but aren't they...
Thomas Eyde
thomas_eyde
Offline Send Email
Feb 3, 2005
9:54 pm
Messages 8247 - 8276 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help