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 25100 - 25129 of 32012   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25100
... I usually try and keep the tests in a seperate EXE project, and the SUT in a seperate COM DLL project, having them both under one project group (similar to...
Avi Naparstek
avinap77
Offline Send Email
Aug 1, 2007
7:30 am
25101
In this blog, there is something. The title is Testing java code using rspec and jruby. ...
Josue Barbosa dos San...
josuebsantos
Offline Send Email
Aug 1, 2007
12:15 pm
25102
Funny... IMO responding on gmail is much easier than the group :) Abraços, Josué. ... [Non-text portions of this message have been removed]...
Josue Barbosa dos San...
josuebsantos
Offline Send Email
Aug 1, 2007
12:46 pm
25103
... I think that this overcomplicates your perspective right away. When I wrote a (very simplistic) tile engine, I started with a story that went like this: I...
michaelgburton
Offline Send Email
Aug 1, 2007
4:10 pm
25104
... Even this story is too broad and too ambiguous (e.g., "possibly"?) to write tests for, let alone implement in a short period of time. It also does not...
Steven Gordon
sfman2k
Offline Send Email
Aug 1, 2007
4:45 pm
25105
... to ... I think you're confusing scope here. The "main story" is more of an inspiration to the designer than a testable requirement. This story is...
michaelgburton
Offline Send Email
Aug 1, 2007
7:45 pm
25106
I throw tests away if 1) they are obviated (subsumed in more interesting tests) or 2) the requirement is withdrawn. If #1 and #2 problems in your email have...
Tim Ottinger
linux_tim
Offline Send Email
Aug 1, 2007
8:32 pm
25107
Hey Michael, ... That's a keen insight you have there. I'm sure these things will get easier with practice. Thank you Chad...
chadderack_online
chadderack_o...
Offline Send Email
Aug 1, 2007
9:59 pm
25108
Hi Steven, ... Good point. But we are using system APIs for most of that stuff; APIs that (hopefully) were tested by those vendors. I'm still under the...
chadderack_online
chadderack_o...
Offline Send Email
Aug 1, 2007
10:01 pm
25109
Hi Tim, ... criteria, ... Something to keep in mind. Thank you. ... too far ... control that ... commit ... "Subversion" seems to be working for us pretty...
chadderack_online
chadderack_o...
Offline Send Email
Aug 1, 2007
10:05 pm
25110
With apologies about possibly posting too much... ... here are some observations from a newb that might sound familiar (hopefully!) or distressing. Take your...
chadderack_online
chadderack_o...
Offline Send Email
Aug 1, 2007
10:21 pm
25111
... That is the essence. If you already decided about the what the solution will look like, how can you claim that you're tests driving your design? [Non-text...
Seyit Caglar Abbasoglu
scabbasoglu
Offline Send Email
Aug 1, 2007
10:43 pm
25112
At this month's Extreme Programming San Diego (XPSD) meeting, Phlip Plumlee will teach us how to perform Test-Driven Development for Ajax under Rails. Phlip...
Clarke, June
joonspoon
Offline Send Email
Aug 1, 2007
11:10 pm
25113
I know your pain. This is how I TDDed in C++: -Create your unit test test project. -Write your test first using your unit test framework (I used UnitTest++). ...
Joseph Gutierrez
gutzofter
Offline Send Email
Aug 1, 2007
11:26 pm
25114
Hi All, NUnit 2.4.2 is available at http://nunit.com/?p=download NUnit 2.4.2 fixes a number of outstanding bugs and adds a number of new features. Culture and...
Charlie Poole
cpoole98370
Offline Send Email
Aug 2, 2007
6:15 am
25115
Hi Jeff, ... The reason why people continue using the Stack as a first example might simply be that "others have used it (and seem to have survived)", not...
Lasse Koskela
lassekoskela
Offline Send Email
Aug 2, 2007
7:18 am
25116
... "It's not a bug, it's a feature!" In .Net and VB6, TDD tends to produce production-code that is in DLL's, wheras the final EXE just contains basic...
Avi Naparstek
avinap77
Offline Send Email
Aug 2, 2007
8:54 am
25117
... I've also encountered this feeling when doing "need-driven" TDD as described in the "Mock Roles, Not Objects" paper (http://www.jmock.org/oopsla2004.pdf)....
Avi Naparstek
avinap77
Offline Send Email
Aug 2, 2007
11:50 am
25118
I'm building a phone number data washer, and my first tests are to check positive and negative results from validating a phone number. My tactic to valid...
Brady Kelly
bradyklly
Offline Send Email
Aug 2, 2007
11:57 am
25119
... illegal ... check ... illegal ... The name I've heard for approaches to this problem is "scattershot" or "shotgun" testing - you create a representative...
michaelgburton
Offline Send Email
Aug 2, 2007
2:43 pm
25120
I don't want to remove illegal characters, just emit warnings for all those numbers. From: testdrivendevelopment@yahoogroups.com ...
Brady Kelly
bradyklly
Offline Send Email
Aug 2, 2007
3:57 pm
25121
... The principle still stands. You simply modify the expectation chain to include an expectation of a warning for each invalid character....
michaelgburton
Offline Send Email
Aug 2, 2007
6:20 pm
25122
I beg your forgiveness in advance for the length of this post, but the subject matter was such that I couldn't shorten it up any more than it is. I am fairly...
josepheames
Offline Send Email
Aug 2, 2007
7:40 pm
25123
Why not move the production code into a dynamic library? And link to that library from your executable and your test executable? Cheers, Manuel ... -- ...
Manuel Klimek
manuel.klimek
Offline Send Email
Aug 2, 2007
7:41 pm
25124
Hey Joseph, ... UnitTest++). ... Sounds very familiar. Is there a way to get "green" or "red" from UnitTest++? Is there a GUI front end for it? That would be...
chadderack_online
chadderack_o...
Offline Send Email
Aug 2, 2007
8:37 pm
25125
Hi Avi, ... Our code is generally linked by module in static libraries. The time savings has more to do with compiling each static library and then the test...
chadderack_online
chadderack_o...
Offline Send Email
Aug 2, 2007
8:45 pm
25126
Hi Manuel ... That would result in quicker link times across the board... however, that would fundamentally change much of our application framework. We'll...
chadderack_online
chadderack_o...
Offline Send Email
Aug 2, 2007
8:47 pm
25127
Hey Avi, ... You pretty much nailed it. It can feel like you're taking several baby steps--through tar! I suppose once the iteration is complete... if the ...
chadderack_online
chadderack_o...
Offline Send Email
Aug 2, 2007
8:58 pm
25128
... Sounds like an excellent situation to simply use a generic "validation" interface (or possibly a few different interfaces, depending on how heterogenous...
michaelgburton
Offline Send Email
Aug 2, 2007
9:52 pm
25129
... Joe, Even if you couldn't do unit testing, I think this would benefit from integration level testing. That is, just take a bunch of example XML files, run...
Kelly Anderson
kellycoinguy
Online Now Send Email
Aug 3, 2007
1:54 am
Messages 25100 - 25129 of 32012   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