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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7477 - 7506 of 32000   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7477
... Edwin, I'm still pretty sure I'm writing my code test first. I don't have a design on paper for what I'm writing, I'm writing tests before I write code,...
Brian Button
bbutton
Online Now Send Email
Oct 1, 2004
1:28 pm
7478
I think we all misunderstood our messages. (There's that darn communication problem again!) As usual, more information clears things up. Agile is about having...
Edwin Gabriel Castro
edwing_castro
Offline Send Email
Oct 1, 2004
4:06 pm
7479
... Well, Brian's not going to toot his own horn on this one, but he's been doing TDD longer than about 99% of the developers who've tried it. He's trained...
Michael Feathers
mfeathers256
Offline Send Email
Oct 1, 2004
5:48 pm
7480
... Would not that be called an Acceptance Test? - George...
George Dinwiddie
gdinwiddie
Offline Send Email
Oct 1, 2004
6:12 pm
7481
... Edwin, No harm, no foul. If we didn't feel passionate about this stuff, we wouldn't argue about it :) ... Actually, long-time Linux user who recently...
Brian Button
bbutton
Online Now Send Email
Oct 1, 2004
7:10 pm
7482
I am about to embark on refactoring an existing J2EE application at work. The current application has a simple data access object that returns various objects...
Jeff Morgan
javagnome
Offline Send Email
Oct 2, 2004
4:35 pm
7483
... If you aren't offending by a book recommendation, chapter 10 of _JUnit Recipes_ can tell you lots. :) The short version is this: if you just test that your...
J. B. Rainsberger
nails762
Offline Send Email
Oct 2, 2004
11:53 pm
7484
I use dbUnit....
George Dinwiddie
gdinwiddie
Offline Send Email
Oct 4, 2004
2:11 pm
7485
I tend to think of acceptance tests as "system-wide" functional tests representing user stories (use cases). The end user (or a representative) of the entire...
Edwin Gabriel Castro
edwing_castro
Offline Send Email
Oct 5, 2004
12:45 am
7486
I was wondering what people knew about this project. Is it in use? Are there examples and assemblies to use? Thank you. Carlton...
banshee858
Offline Send Email
Oct 5, 2004
11:10 pm
7487
With your permission – here's something I posted on my blog just now and thought this may be a valuable addition to Nunit in some way. (published here:...
 
royosherove
Offline Send Email
Oct 6, 2004
1:12 am
7488
Hi, I've got a weird problem with Nunit and it boils down to the code below. It seems that Asserts in methods on ThreadPool threads don't work (if you step...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Oct 6, 2004
8:26 pm
7489
... I looked at your code, and I think I understand what is happening. Which version of NUnit are you using? I've heard rumors that 2.2 solves this problem,...
Brian Button
bbutton
Online Now Send Email
Oct 6, 2004
10:04 pm
7490
John, Yes - Brian is right. It appears to be due to the exception occurring on another thread. Trapping the exception and then checking it, yields the ...
Jonathan Cogley
thycotic
Offline Send Email
Oct 7, 2004
3:47 am
7491
Thanks both. I'm currently using 2.1.4. I'll pick up the latest and try to remember to post the result back here. John D. ... From: Jonathan Cogley...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Oct 7, 2004
2:20 pm
7492
Well, I retried with v2.2, and the behaviour is slightly different. Now, the routine on the threadpool thread is interrupted when the Assert fails but the...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Oct 7, 2004
2:20 pm
7493
This bit of TDD magic brought to you by the Ruby-Talk mailing list via John Long of the Chicago Ruby Users Group. Pass a simple, empty Functor object in to the...
Ryan Platte
ryanplatte
Offline Send Email
Oct 9, 2004
6:11 pm
7494
... <snip /> Now /this/ is programming. This is the stuff I miss by working in Java and C#. This is the stuff I'd rather be doing. This is just neat. ... Very...
J. B. Rainsberger
nails762
Offline Send Email
Oct 10, 2004
6:01 pm
7495
... That is very cool. Ever try returning 'self' from the functor? That could be a neat effect. :-) Michael Feathers www.objectmentor.com...
Michael Feathers
mfeathers256
Offline Send Email
Oct 11, 2004
11:46 am
7496
... Ooops.. I meant 'self' from 'method_missing.'...
Michael Feathers
mfeathers256
Offline Send Email
Oct 11, 2004
11:53 am
7497
Does anyone know of a unit testing framework for RPG ILE? I'm afraid this is wishful thinking, but it's worth a shot. Thanks, Keith Reichert...
hipaa_guru1
Offline Send Email
Oct 12, 2004
4:47 pm
7498
Joe, I certainly like the idea of using mocks to test the DAOs. It definitely simplifies the tests and makes then run a lot faster. However, I am still a...
Chris Richardson
cer
Online Now Send Email
Oct 12, 2004
9:39 pm
7499
Thanks for J.B. for bringing to my attention this is something I could use with what I'm doing now... Thanks to Ryan and John for bringing it to us. I did this...
Forrest Chang
fkchang2000
Online Now Send Email
Oct 12, 2004
9:41 pm
7500
... If you're worried about SQL statements not working against schema changes, then add a smoke test suite that tries out all the SQL statements you run and...
J. B. Rainsberger
nails762
Offline Send Email
Oct 12, 2004
11:28 pm
7501
I have never seen such framework. Still, I think you could use a C language based xUnit framework, compile it as a C ILE service program and call its...
Antoine Contal
lacton666
Offline Send Email
Oct 13, 2004
8:23 pm
7502
JB, How do you propose implementation of a "smoke test" of the SQL statements that: 1. Runs automatically? 2. Does not introduce duplication? If the SQL...
Justin Knowlden
jaknowlden
Online Now Send Email
Oct 13, 2004
10:29 pm
7503
Hi folks, We have a situation where we need to test a state machine that is effectively a many to many relationship, i.e. "If the User has privilege X, and the...
Dave Rooney
daverooneyca
Offline Send Email
Oct 14, 2004
2:14 pm
7504
... The most obvious thing you didn't mention is Abstract Tests... An abstract test suite ABC' targets an abstract base class ABC. Concrete classes A, B, and C...
Phlip
phlipcpp
Offline Send Email
Oct 14, 2004
2:45 pm
7505
... Here is a glaringly obvious suggestion. Why not make the application data-driven? e.g. Use an XML table etc. to specify what happens for a particular...
juliangall
Offline Send Email
Oct 14, 2004
5:29 pm
7506
I'm having the nastiest little problem with NUnit, and I can't figure out how to fix it. We have a team of a dozen users, and not everyone has this problem. ...
mikecallaghan@...
mikecallaghan
Offline Send Email
Oct 14, 2004
5:30 pm
Messages 7477 - 7506 of 32000   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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