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.
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 11738 - 11767 of 32010   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11738
... just ... (including ... perfect, ... the ... making ... YAGNI. but isn't this supposed to be one of the basic principles of TDD? We write something driven...
avinap77
Offline Send Email
Oct 1, 2005
8:43 am
11739
... true) = ... My point exactly - I was replying to an answer that said we wouldn't need the test f(fale, true, true) = false. The question was do I really...
avinap77
Offline Send Email
Oct 1, 2005
8:47 am
11740
Hi, you can lookup anything to do with dependency injection, or ioc containers. In the java world there are these two frameworks that I know of: ...
sagyrozman
Offline Send Email
Oct 1, 2005
9:27 am
11741
... Just one guy's thoughts: I agree with some of the above, but not all. I believe that software defects are generally less costly to prevent than they are to...
Ron Jeffries
ronaldejeffries
Offline Send Email
Oct 1, 2005
10:47 am
11742
I've tried this and I'm seeing a BadImageFormatException. Here's what I have done: - installed 2.2.2 (no problem) - modified the nunit-gui.exe.config to have...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Oct 1, 2005
4:28 pm
11743
Something that may not be obvious is that the <startup> section in the default nunit-gui.exe.config is actually commented out. Did you noticed that? You need...
Kevin Dente
kevindente
Offline Send Email
Oct 1, 2005
4:38 pm
11744
Kevin, well! I feel suitably stupid. :-( That will teach me to use Notepad. When I uncommented that section of the config file things start to work. Thanks for...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Oct 1, 2005
5:32 pm
11745
Believe me, I've made that same mistake. :) ... [Non-text portions of this message have been removed]...
Kevin Dente
kevindente
Offline Send Email
Oct 1, 2005
5:38 pm
11746
Continuing the "a AND b AND c" thread, my actual case is that (a), (b) and c) are in fact other methods of the same object as f() is of. So this is what I...
avinap77
Offline Send Email
Oct 1, 2005
6:18 pm
11747
... You could mock the other methods by deriving a mock-ish class from your class under test. Override a,b and c with whatever you need for verification that f...
David Chelimsky
dchelimsky
Offline Send Email
Oct 1, 2005
6:40 pm
11748
Override method is the usual way to go in this case. Your test would use a derived class that you create for the test....
Ayende Rahien
ayende_tdd
Offline Send Email
Oct 1, 2005
7:37 pm
11749
... I think it might be helpful to have a real example rather than an abstract one. Ron Jeffries www.XProgramming.com Speculation or experimentation - which is...
Ron Jeffries
ronaldejeffries
Offline Send Email
Oct 1, 2005
8:01 pm
11750
Hi Avi, instead of overiding these methods for the purpose of mocking them, try to use composition instead of inheritance. Depending on your specific example,...
sagyrozman
Offline Send Email
Oct 1, 2005
11:15 pm
11751
... You've got a very small cluster test that exercises the implementations of A and B together. Whether you care about this is up to you. S....
Stephen Freeman
smg_freeman
Online Now Send Email
Oct 2, 2005
9:23 am
11752
... I'm not sure I'd bother. Just test f() as it stands and leave some duplication (for now) in the tests. Then speculate about whether the relationship...
Stephen Freeman
smg_freeman
Online Now Send Email
Oct 2, 2005
9:39 am
11753
Hello All, Could any one explain me what is cost of change curve is? What does that phrase mean "Cost of Change". Does it mean that amount of money spent in...
vidya D
vidya1224
Offline Send Email
Oct 2, 2005
12:29 pm
11754
From: "vidya D" <vidya1224.at.yahoo.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Oct 2, 2005
12:55 pm
11755
... There is, including a port of spring. But it seems more complicated than necessary to me. In c# syntax... Config public static TheDependencyType...
Philip Nelson
PanManPhil
Offline Send Email
Oct 2, 2005
2:36 pm
11756
FYI Dolphin Smalltalk uses MVP. http://www.object-arts.com/Products.htm http://www.object-arts.com/EducationCentre/Education.htm See link ... ...
Richard Boyd
r_v_boyd
Offline Send Email
Oct 2, 2005
6:05 pm
11757
We've all had that wonderful experience, at least once in our lives. It might be a team at work, it might be a volunteer community, perhaps it's an online...
estherschindler
Offline Send Email
Oct 2, 2005
6:32 pm
11758
Compsition/separate object for just these methods seems a bit of overkill for a simple (a and b and c) test. Unless your method f does more than this? The...
Robert Hanson
mvarobert1
Offline Send Email
Oct 3, 2005
3:10 pm
11759
Hi, For web applications, we do two kinds of tests: acceptance tests over the GUI, using the excellent selenium (http://selenium.thoughtworks.com ) and for...
Dan Bunea
danbunea
Online Now Send Email
Oct 3, 2005
3:26 pm
11760
... Thanks, Dan. Actually, I emailed some of the Rails devs about this and they directed me to a little directive called use_transactional_fixtures that has...
Ryan Platte
ryanplatte
Offline Send Email
Oct 3, 2005
4:15 pm
11761
... Sorry for the late reply. Your broader view of the issue is really interesting. How are your mocks introduced? I'm interested in anything you can share (or...
Ryan Platte
ryanplatte
Offline Send Email
Oct 3, 2005
4:27 pm
11762
... Happy to oblige. For an academic treatment, see: http://pag.csail.mit.edu/pubs/test-factoring-ase2005-abstract.html ... I think Working Effectively with...
David Saff
dsaff
Offline Send Email
Oct 3, 2005
5:53 pm
11763
... Robert, I shouldn't try to write e-mail while still in post-lunch food coma, but what is the advantage of the properties in this case? You still have a ...
David Saff
dsaff
Offline Send Email
Oct 3, 2005
5:56 pm
11764
Hi, I am glad to be of any help. Hope one day I can also benefit from the amazing (from what I hear) ROR. Dan Bunea http://danbunea.blogspot.com On Mon, 03 Oct...
Dan Bunea
danbunea
Online Now Send Email
Oct 3, 2005
6:10 pm
11765
I'd really have to agree with Stephen that there's some hidden concept lurking in there between a, b, and/or c. But if we're not in a refactoring sort of mood,...
Rim, Mark
markrim
Offline Send Email
Oct 3, 2005
6:35 pm
11766
Hello all, I been slowly getting to grips with TDD through the past few weeks... After reading a fair amountI had developed the following code: Admin Class,...
richard743957
Offline Send Email
Oct 3, 2005
9:10 pm
11767
... How are you accessing the data, if you're using some abstraction like NHibernate, it's very easy to use in memory SQLite database....
Ayende Rahien
ayende_tdd
Offline Send Email
Oct 3, 2005
9:20 pm
Messages 11738 - 11767 of 32010   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