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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 7386 - 7415 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7386
Just an update on this for everyone and some more questions... I've been able to successfully read in the Excel spreadsheet of info using POI, as suggested,...
Paul Michali
pc_michali
Offline Send Email
Sep 2, 2004
12:02 pm
7387
... I have played with representing those objects as "typed Maps" -- a Map-like interface (name -> value) where you can specify the type of the values for...
J. B. Rainsberger
nails762
Offline Send Email
Sep 2, 2004
12:14 pm
7388
I've pretty much completed part I of this project, which is a TDD/Java learning exercise (and gives me something to use for my membership chair work in a car...
Paul Michali
pc_michali
Offline Send Email
Sep 2, 2004
12:27 pm
7389
How about changing the Ctor so that it accepts a single param. This param would be the 'thing' which the Ctro uses to get the necessary values from. class...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Sep 2, 2004
12:50 pm
7390
... I have a SpreadsheetDataSource class that reads a row of the spreadsheet. I then have a SpreadSheetMemberDAO that takes that info and creates a Member...
Paul Michali
pc_michali
Offline Send Email
Sep 2, 2004
2:01 pm
7391
... If you have different contentProvider derived classes, then overLoaded factoryMethods on the member class, rather than using Ctors is a good way togo. ...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Sep 2, 2004
2:36 pm
7392
Probably this a basic question - Is it hard to do test-first development when you are writing applications on a package/api that provides some basic set of...
Ravi
ravi116
Offline Send Email
Sep 2, 2004
3:28 pm
7393
... TDD is either a design technique yielding bug-free code or an implementation technique yielding bug-free code and a good design. That works great designing...
Phlip
phlipcpp
Offline Send Email
Sep 2, 2004
5:57 pm
7394
A good way to make sure you know how to use the package is to write tests for it that reflect the way you want to use the package. It's (almost) always a good...
James Grenning
jwgrenning
Offline Send Email
Sep 2, 2004
8:15 pm
7395
... There's a double meaning there. Naturally one should limit dependency on 3rd party packages one installs... I used to think engineers should prefer to buy ...
Phlip
phlipcpp
Offline Send Email
Sep 2, 2004
8:37 pm
7396
What does the Customer need? As I see it, this is more about your requirements than how to do it TDD. It seems that you are only concerning bad data in the...
thomas_eyde
Offline Send Email
Sep 3, 2004
6:45 am
7397
... I'm the customer (I'm the membership chair - and trying to make my work easier, by automating the generation of reports and storing info that will make it...
Paul Michali
pc_michali
Offline Send Email
Sep 3, 2004
12:11 pm
7398
Do you know and care about the difference between JUnit extensions such as HTMLUnit and HTTPUnit? Cactus, MockObjects, and JUnitEE? Abbot, Jemmy, JFCUnit,...
Thomas L Roche
tlroche
Offline Send Email
Sep 3, 2004
5:44 pm
7399
... It is hard to do test-first development, but for entirely different reasons. It appears you are test-driving a feature that uses third-party code that you...
J. B. Rainsberger
nails762
Offline Send Email
Sep 3, 2004
10:31 pm
7400
TDDers: Someone recently posted, somewhere else, "When we get to full system test, it is rare to find a coding bug. Bugs found at this state are logic bugs, or...
Phlip
phlipcpp
Offline Send Email
Sep 4, 2004
1:07 am
7401
Types of bugs I don't know how to write unit tests for: - Security - Performance - Multi-Threading - Usability -Jay http://blogs.msdn.com/jaybaz_MS ... From:...
Jay Bazuzi
jaybaz
Offline Send Email
Sep 4, 2004
1:17 am
7402
... In Java, we have JUnitPerf, which defines "TimedTestCase". You could port that to your local environment pretty easily. For the rest, I'm with you. -- J....
J. B. Rainsberger
nails762
Offline Send Email
Sep 4, 2004
1:43 am
7403
... Call them "issues", not "bugs" then. Can you write tests for their symptoms? I have seen a multi-thread project developed via pure test-first. The tests...
Phlip
phlipcpp
Offline Send Email
Sep 4, 2004
1:55 am
7404
... This will only really help you find "local" performance problems, however. It can't help prevent environmental performance problems (the production machine...
Doug Swartz
gruverguy
Offline Send Email
Sep 4, 2004
12:43 pm
7405
I'm a newbie on this list and like to throw in a question about the availability of case studies, academic papers, magazine articles, etc, that proves the...
christer_ljung
Offline Send Email
Sep 4, 2004
1:25 pm
7406
... I don't know much of what's out there now, but some of us are thinking about these things and, if we ever get off our asses, will write something about it....
J. B. Rainsberger
nails762
Offline Send Email
Sep 4, 2004
3:01 pm
7407
... I don't think you can catch them in unit tests. You can, however, simulate your production environment and monitor it. You can even monitor your production...
J. B. Rainsberger
nails762
Offline Send Email
Sep 4, 2004
3:02 pm
7408
Hello, I'm working on my first TDD project and would appreciate a little advice. Here is a brief overview of the problem. It's a small project that creates a...
killian3535
Offline Send Email
Sep 4, 2004
6:28 pm
7409
... What would happen if you took it "One bird at a time"? 1. A test for one field. 2. A test for the whole line, containing the one field. 3. A test for...
Ron Jeffries
ronaldejeffries
Offline Send Email
Sep 4, 2004
7:48 pm
7410
... Thank you for replying, Ron Jeffries. In your suggestion, in order to test a single field, I would have to have the export class expose the fields...
killian3535
Offline Send Email
Sep 4, 2004
9:11 pm
7411
... Programming tutorials often contain recommendations like: * "Make all data private to a class." * "Declare a separate interface for each category of client...
Phlip
phlipcpp
Offline Send Email
Sep 4, 2004
9:25 pm
7412
... Hello, Thanks for your response, Phlip. That helps me determine how strictly I should adhere to rules and such when it comes to developing using TDD. I am...
killian3535
Offline Send Email
Sep 4, 2004
9:50 pm
7413
I want to thank Ron Jeffries and Phlip for their quick and helpful replies. Kelly...
killian3535
Offline Send Email
Sep 4, 2004
9:52 pm
7414
... I may not be understanding the situation. I was envisioning that the model information must be exposing value that the export class grabs and writes; that...
Ron Jeffries
ronaldejeffries
Offline Send Email
Sep 4, 2004
11:26 pm
7415
If I may add one - memory ownership. Quite a nasty problem to have. The interesting part is the solution to it - pick an environment that does not have those...
Robert Blum
groby_b
Offline Send Email
Sep 5, 2004
12:42 am
Messages 7386 - 7415 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