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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6651 - 6680 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6651
Hi, For one of my current projects, I am having trouble of thinking how to proceed, and I was wondering if anyone could give me some ideas. The project is to...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
8:48 am
6652
Hi, Anthony, ... ExpectLess TimeToListDirectory(MaximumConceivableDirectory), MAXIMUM_ALLOWABLE_TIME Peace, --Carl...
Carl Manaster
cmanaster
Offline Send Email
Apr 1, 2004
9:45 am
6653
... Well, yes, but MAXIMUM_ALLOWABLE_TIME is 2 minutes, and MaximumConceivableDirectory is not really limited. We can easily conceive of 10000+ files required,...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
10:57 am
6654
Anthony, What would be the content of the index data your return? What are you actually providing back to the client? I would lean towards having a simple ...
Nick Robinson
fromconcept
Offline Send Email
Apr 1, 2004
11:15 am
6655
... The files are essentially records in a database, each of which contains various "key" fields, and a host of data. The client can request a list of files...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
11:43 am
6656
... I'm not sure whether you are wanting TDD to "find" a solution for you, or just to use TDD to develop a solution you've chosen, but it sounds like the ...
Ron Jeffries
ronaldejeffries
Offline Send Email
Apr 1, 2004
11:47 am
6657
... Well, one might pick an interface, but not a solution. Presumably we have the outside interface already given, the one that the system already uses. I'm...
Ron Jeffries
ronaldejeffries
Offline Send Email
Apr 1, 2004
12:03 pm
6658
... Right, ok. ... It sounds like you already have a part solution, but it just isnt performant enough. You need to make a decision on something so you can...
Nick Robinson
fromconcept
Offline Send Email
Apr 1, 2004
12:15 pm
6659
Ofcourse, had I seen Rons responses sooner I wouldnt have replied. Ron seems to have covered all bases :-)...
Nick Robinson
fromconcept
Offline Send Email
Apr 1, 2004
12:19 pm
6660
... Up until now, when I've been coding TDD, its been to add clear features --- in this situation, the code must do X, in that situation it must do Y. This...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
12:26 pm
6661
... Fundamentally, yes. ... Yes, but we can't change the interface --- it has to exactly match that provided by another server. ... Currently, the code caches...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
12:46 pm
6662
... I don't think one can "discover" quicksort using TDD or [any other scheme?] by manipulating the code. I suspect one has to discover it by reasoning about...
Ron Jeffries
ronaldejeffries
Offline Send Email
Apr 1, 2004
12:52 pm
6663
... No way, I'm still just mumbling ... Ron Jeffries www.XProgramming.com Agility is not an inescapable law of purity but a pragmatic principle of...
Ron Jeffries
ronaldejeffries
Offline Send Email
Apr 1, 2004
1:01 pm
6664
... Yes. ... Building the index is the slow part, but currently the app builds the index on first query, to catch updates to the directory. I think I'll TDD a...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
1:17 pm
6665
... << snip >> ... When each client connects, do they involve a rebuild of the index which is then cached for that client session? If this is the case, then I...
Nick Robinson
fromconcept
Offline Send Email
Apr 1, 2004
1:27 pm
6666
... Yes. ... Yes. It was just the simplest thing that worked. Now it is no longer sufficient. ... That would be doable, but then there's the issues of catching...
Anthony Williams
anthony_w.geo
Offline Send Email
Apr 1, 2004
2:10 pm
6667
... Robert C. Martin (Uncle Bob) Object Mentor Inc. unclebob@... 800-338-6716 ... I think it's a perfectly good programmer test since it's...
Robert C. Martin
rmartinoma
Offline Send Email
Apr 1, 2004
2:25 pm
6668
... More the latter than the former. There are lovely moments when TDD helps you stumble upon a simpler solution than you thought. But TDD is not a reliable...
Robert C. Martin
rmartinoma
Offline Send Email
Apr 1, 2004
2:31 pm
6669
I wouldn't try returning *anything* from this method. I wouldn't have a catch block, either. Let the exception propagate. This method shouldn't be trying to do...
Tony Nassar
aanassar
Offline Send Email
Apr 1, 2004
2:32 pm
6670
... Throughput can be a nasty issue. You can waste lots of time pursuing it without making a dent in it. So first it's important to set an objective ...
Robert C. Martin
rmartinoma
Offline Send Email
Apr 1, 2004
2:33 pm
6671
... Well, not Reading, England for me. But, I would like to meet folks from Reading, PA, USA, or even better Philadelphia, PA area :) ... Good luck. Cheers, ...
Jason Nocks
jason_nocks
Offline Send Email
Apr 1, 2004
2:55 pm
6672
Anthony Williams <anthony_w.geo@...> wrote: << snip >> ... There are many ways in which this could be solved, increasing in order of complexity. As an...
Nick Robinson
fromconcept
Offline Send Email
Apr 1, 2004
3:33 pm
6673
I'm struggling with this right now, as I try to implement suffix trees, DAGs, etc. The general problem seems to be that a lot of algorithms on data structures...
Tony Nassar
aanassar
Offline Send Email
Apr 1, 2004
3:41 pm
6674
In Nunit the Expected Exception Attribute will turn green the bar green if the exception is thrown from the setup code or teardown code, so when testing...
Alan Flaherty
alanflaherty
Offline Send Email
Apr 1, 2004
3:48 pm
6675
Yikes! I didn't know that. Thanks for the heads-up! ... green if ... to ... or ... I ... types...
Tony Nassar
aanassar
Offline Send Email
Apr 1, 2004
3:51 pm
6676
... then I the programmer flaw is larger than the macro flaw. This kind of code scream side effects. You are practically begging for trouble. /Thomas...
Thomas Eyde
thomas_eyde
Offline Send Email
Apr 1, 2004
4:32 pm
6677
... I can respect that philosophy, but your solution makes me uncomfortable - perhaps that is because I do not understand exception handling well. Personally,...
banshee858
Offline Send Email
Apr 1, 2004
4:45 pm
6678
Carlton, There's a lot of discussion about philosophies of exception handling; even experts disagree, and I'm no expert. Bruce Eckels discusses Java's checked...
Tony Nassar
aanassar
Offline Send Email
Apr 1, 2004
5:09 pm
6679
Banshee, I'm sorry to go around and around like this, but what are you actually trying to test? That the method returns a certain kind of document? You're not...
Tony Nassar
aanassar
Offline Send Email
Apr 1, 2004
5:19 pm
6680
From: "banshee858" <cnett858.at.san.rr.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Apr 1, 2004
5:36 pm
Messages 6651 - 6680 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