Skip to search.
testdrivendevelopment · Test-driven Development

Group Information

  • Members: 3502
  • Category: Software
  • Founded: Feb 7, 2002
  • Language: English
? 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.

Messages

  Messages Help
Advanced
Messages 15438 - 15467 of 34997   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15438 Jeffrey Fredrick
frogstar Offline Send Email
Apr 1, 2006
3:49 pm
which articles? pointers? Jtf ... -- http://www.developertesting.com/...
15439 Jeffrey Fredrick
frogstar Offline Send Email
Apr 1, 2006
3:49 pm
... The abstractions made the code clearer to me. I think the code by intent seems perfectly clear... after you've invested the time to understand it....
15440 yahoogroups@...
jhrothjr Offline Send Email
Apr 1, 2006
5:07 pm
From: "Jeffrey Fredrick" <jeffrey.fredrick.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
15441 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 1, 2006
5:59 pm
... These are the ones I was referring to: Mining the Bowling Game Ron Jeffries 03/06/2006 A TDD demonstration of the Bowling Game suggested that there is ...
15442 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 1, 2006
6:18 pm
... Yes. I think it also makes pretty good sense in something like if (frameIsSpare()) return tenPlusNextRoll(); ... Well, I'd make two observations: First,...
15443 Keith Ray
attkeithray Offline Send Email
Apr 1, 2006
6:59 pm
"The bowling game" is just a scoring algorithm. And a fairly simple one at that. What if there are 100 pins and 50 players and the balls hitting pins were...
15444 Asim Karim
asimkarim Offline Send Email
Apr 1, 2006
7:31 pm
Hi everyone, I am new in the world or agile development. In what (real world) situations would it be advantageous to use TDD and what situations would it be...
15445 Phlip
phlipcpp Offline Send Email
Apr 1, 2006
7:55 pm
... TDD is an implementation technique. (Preferrable to endless debugging.) FDD is a requirements gathering technique, right? Sounds like they would fit...
15446 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 1, 2006
9:01 pm
... It might. I wonder whether most of the programs folks actually write would be more like that OO game, or more like a bunch of little objects with procedure...
15447 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 1, 2006
9:03 pm
... The two are not the same kind of thing. TDD is an approach to coding, FDD is a software development methodology. Ron Jeffries www.XProgramming.com Perhaps...
15448 Shane Mingins
shanemingins Offline Send Email
Apr 2, 2006
9:22 am
Hi Jeff Some additional comments I'd like to add ... One thing that was interesting is that I refactored the procedural code to the "OO" code without adding...
15449 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 2, 2006
10:27 am
... It's possible that it does, in the sense that more object-oriented solutions seem not to be as desirable as one would wish them to be. It could be due to...
15450 yahoogroups@...
jhrothjr Offline Send Email
Apr 2, 2006
2:37 pm
From: "Ron Jeffries" <ronjeffries.at.XProgramming.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
15451 Jim Bennett
jtbennett77 Offline Send Email
Apr 2, 2006
2:52 pm
... From: "Keith Ray" <keith.ray@...> ... Don't forget later versions of ModSim :) I loved that environment back in college on the IBM RISC machines....
15452 Marc Evers
m_j_evers Offline Send Email
Apr 2, 2006
6:49 pm
(we apologize if you receive multiple copies of this message) Agile Open - www.agileopen.net 27 and 28 April 2006 Elewijt Center, Mechelen, Belgium Hi, We wish...
15453 Jeffrey Fredrick
frogstar Offline Send Email
Apr 3, 2006
4:50 am
... No? Most discussions of TDD I've seen talk about steps like: 1. Write a test. 2. Write the code to make it work. 3. Refactor the code to make it right. 4....
15454 Jeffrey Fredrick
frogstar Offline Send Email
Apr 3, 2006
5:19 am
"sense the forces around us"... I like that phrase. some of those forces are our context, our experience and our habits and I've no doubt that my preferences...
15455 akohli2000 Offline Send Email Apr 3, 2006
7:40 am
Please bear in mind that this is from a TDD neophyte... one way to start would be to TDD the custom methods in the class you will write to implement...
15456 anand118 Offline Send Email Apr 3, 2006
7:40 am
Hi, I have just started looking at fitnesse. From the examples that come with Fitnesse, I was able to test a ColumnFixture table that looked like below. ...
15457 Nikita Zhuk
zhuk_n Offline Send Email
Apr 3, 2006
7:40 am
Hello, I'm writing a candidate dissertation about test-driven development at my university and I would like to ask for some opinions and pointers to articles...
15458 nparker575 Offline Send Email Apr 3, 2006
7:41 am
Kelly, Have you considered defining an interface around the event that is exposed by the MenuItem? It seems this might help abstract this functionality and...
15459 Enrico Schwass
onkelenno Offline Send Email
Apr 3, 2006
7:42 am
Hello I am fairly new to TDD and Smalltalk and looking for a tutorial that describes the cycle (write test, write code, write another test ...) from within a...
15460 Shane Mingins
shanemingins Offline Send Email
Apr 3, 2006
7:46 am
Ron wrote a series on TDD'ing the Bowling Game http://www.xprogramming.com/xpmag/BowlingForSmalltalk.htm HTH Shane ... -- Shane Mingins [Non-text portions of...
15461 Gishu Pillai
gishu_pillai Offline Send Email
Apr 3, 2006
8:51 am
... Thorough TDD should give you 100% verifiable test coverage without a single 'white-box-test' - identify the functionality of the unit to be written ... I...
15462 Dan Bunea
danbunea Offline Send Email
Apr 3, 2006
9:17 am
Last night I was writing something to be published first on my blog as an idea, and then in a book I am working on: Test driven development: tests and code as...
15463 avinap77 Offline Send Email Apr 3, 2006
9:30 am
Hi Amit. Thanks for the reply - it at least strenthengn my current opinion that while unit-testing the HTTPModule wouldn't hurt, it seems like the bulk of...
15464 Ayende@...
ayende_tdd Offline Send Email
Apr 3, 2006
9:37 am
Take a look at Castle.MonoRail.TestSupport What is done there is basically hosting the runtime and generating fake requests. ... From: "avinap77"...
15465 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 3, 2006
11:54 am
... ;-> ... Yes. Another interesting question, and a difficult one, is whether and how it will improve the /project/. ... Yes. That's what makes the silly...
15466 Ron Jeffries
ronaldejeffries Offline Send Email
Apr 3, 2006
12:03 pm
... There are these ... Discovering Better Code: Bowling For Smalltalk Ron Jeffries 12/19/2004 After a long time away, I had occasion to start using Smalltalk ...
15467 Cory Foy
cory_foy Offline Send Email
Apr 3, 2006
12:33 pm
... You need to set the path to the location of the package e which contains package g which contains class multiply, using your above example. There is also a...
Messages 15438 - 15467 of 34997   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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