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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 16095 - 16124 of 28695   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16095
Well, I for one don't see the interest in the files/database question. It's just an implementation choice - hide it. What you really want to do is get hold of...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
May 1, 2006
9:48 am
16096
... It seems so to me as well. I could see the DB as a way to do indexing "on the fly" on the site instead of pre-calculating the indexes. But since the site...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
10:32 am
16097
... But what price does that advantage come with? John Roth brought into words what I was thinking (but didn't realize) - XSL is hard to test, so use something...
Cory Foy
cory_foy
Online Now Send Email
May 1, 2006
11:42 am
16098
... It's a good angle, and a tempting one, but it's just an angle. In any legacy situation, it's tempting to go to a new implementation or a new technology or...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
12:06 pm
16099
... I find that with a lot of the English Ruby documentation. The past 2 nights I've been struggling with some TkRuby stuff, and most of the documentation is...
Cory Foy
cory_foy
Online Now Send Email
May 1, 2006
12:35 pm
16100
Ron, I think, if I was considering a project like your site I would be tempted to get into object code as quickly as possible. Basically try to treat an...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
May 1, 2006
12:53 pm
16101
... Yes ... sort of. Zope, for example, is arguably an object model for a web site. It's a big framework, however, and I'm not sure it would really help in my...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
1:24 pm
16102
Excellent advice! A technique that I have found very useful in this situation when using rMock http://rmock.sf.net is using "intercept". If I would use it on ...
j0hlrogge
Offline Send Email
May 1, 2006
1:45 pm
16103
... You're right. I knew instinctively that my opinions were going to trigger some negative reaction but I didn't make the clear mental connection between ...
Dan Perl
danperl
Offline Send Email
May 1, 2006
1:46 pm
16104
... I've unit-tested functional programs and it is MUCH easier. A framework can be written in an hour. Your datasets can be typed inline and transformed to...
Alan Baljeu
alanbaljeu
Offline Send Email
May 1, 2006
2:16 pm
16105
One of the strengths of TDD tests is that they function as change-detectors -- an unintended change should cause the tests to fail. A necessary side-effect of...
Keith Ray
attkeithray
Offline Send Email
May 1, 2006
2:33 pm
16106
... That balance is an illusion. Discussions such as these are heavily weighted by self-selection already. At best, you can hope to polarize. However, that too...
William E Caputo
logosity
Offline Send Email
May 1, 2006
2:46 pm
16107
I ran into this quote from Larry O'Brian in today's Software Development Times (May 1, 2006). "While unit tests help greatly in documenting fixes, to the...
Anderson, Kelly
kellycoinguy
Offline Send Email
May 1, 2006
6:11 pm
16108
... I don't know if I would call it "false" confidence. I'm much more confident when dealing with explicit assumptions than I am with implicit ones. If I ...
Carl Hume
carl_hume
Offline Send Email
May 1, 2006
6:18 pm
16109
I would agree with this. But with the condition that explicitly stating the assumption sometimes make you realize that it is false. ... From:...
Ayende Rahien
ayende_tdd
Offline Send Email
May 1, 2006
6:20 pm
16110
... I agree that if you make an incorrect assumption, and don't know it's incorrect, that unit tests will affirm incorrect what you've incorrectly assume. This...
Greg Akins
angrygreg
Offline Send Email
May 1, 2006
6:20 pm
16111
... It's certainly true that if you have the requirements wrong, the code is likely to be wrong as well. The test: Assert.AreEqual(5, Numbers.Sum(2, 1, 1)); ...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
6:22 pm
16112
... Indeed, Bill. Although my work is in some sense "inside" the Agile Movement (whatever that is), and I do try sometimes to influence the whole thing (much...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
6:30 pm
16113
... Dan, I want to be clear that I respect your view on this, and understand where it might come from, especially because of your upbringing. Many people who...
Ron Jeffries
ronaldejeffries
Offline Send Email
May 1, 2006
6:49 pm
16114
... I ran into a similar situation like you describe, where changing the internal storage of some object caused major hassles. Turns out I learned (after much...
David Rosenstrauch
darose2
Online Now Send Email
May 1, 2006
8:11 pm
16115
... I just know there's a "sunken cost fallacy" lurking in there, somewhere. -- Phlip http://www.greencheese.us/ZeekLand <-- NOT a blog!!...
Phlip
phlipcpp
Offline Send Email
May 1, 2006
9:46 pm
16116
... The real fallacy is this: without unit tests, how can you know with any certainly what the wrong assumptions even are? -- Curt Hagenlocher ...
Curt Hagenlocher
curt_hagenlo...
Offline Send Email
May 1, 2006
10:52 pm
16117
Hi, What might be the quickest way to refactor a project that is full of this: if (ViewState["MyVar"] != null) { myVar = (int) ViewState["MyVar"]; } into...
Mike
ocean_west_2005
Offline Send Email
May 2, 2006
12:41 am
16118
To make things easier to test, I've started following a pattern similar to this: class StateKey { private string keyName; private ViewStateKey(string keyName) ...
Matt Berther
matt_berther
Offline Send Email
May 2, 2006
12:54 am
16119
from Re: [TDD] Is a commented code a smell? ... --OT-- Sigh again.. Another story. We had this piece of yarn that people had been spinning since I was born. By...
Gishu Pillai
gishu_pillai
Offline Send Email
May 2, 2006
6:12 am
16120
OK, that works, but I don't see a compelling advantage over properties. Ordinary properties are typed, and appear to be TSTTCPW besides. Yes, I think the time...
Mike
ocean_west_2005
Offline Send Email
May 2, 2006
12:00 pm
16121
... I'm using the trial version 2.0, and it doesn't seem to be able to handle such refactorings very well. The only time when search and replace doesn't seem...
Mike
ocean_west_2005
Offline Send Email
May 2, 2006
1:23 pm
16122
Ron, Here’s a suggestion. Maybe you have already looked into something like this, but just in case… We’ve been toying with Selenium...
Pascal Roy
pascal_roy_1967
Offline Send Email
May 2, 2006
1:24 pm
16123
Yes you can do it, by doing multiple refactorings, but I don't think it's the easiest way in this case, since you need to first create a field, then make it a...
Mike
ocean_west_2005
Offline Send Email
May 2, 2006
1:48 pm
16124
... Bob, I have to say that your suggestions on this thread have been very useful and thought provoking. This one in particular has me thinking completely...
Anderson, Kelly
kellycoinguy
Offline Send Email
May 2, 2006
2:27 pm
Messages 16095 - 16124 of 28695   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