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 6862 - 6891 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6862
Not a mock - but I've had success with dumbster (http://sourceforge.net/projects/dumbster) for testing SMTP mailing. Steven Hale Powered by Rockliffe MailSite...
steven.hale@...
siphoninfo
Offline Send Email
May 3, 2004
8:09 am
6863
I wrote a mock implementation of the Transport interface and made it available to the Java system by putting it in java mail properties files as described in...
Tom Cox
tcox56_98
Offline Send Email
May 3, 2004
1:23 pm
6864
Hi I am writing an automated testing script for nightly build to call all my NUnit tests from command line. The relevant NUNit command line params are - ...
sonaliDev
Offline Send Email
May 3, 2004
11:26 pm
6865
I've really enjoyed this group and learned a lot from it. What other groups or mailing lists do you recommend? Thanks, Brad....
w6rabbit
Offline Send Email
May 3, 2004
11:26 pm
6866
There are a bunch at http://AspAdvice.com, including many on architecture, open source tools, etc. I know there are also some Yahoo lists for XP and Agile...
Steven Smith
stevenator2
Offline Send Email
May 4, 2004
12:41 am
6867
... For the Agile Articles group the url is : <http://groups.yahoo.com/group/agilearticles/> The Agile Alliance has a similar group : ...
Sven Gorts
Gorowitch
Offline Send Email
May 4, 2004
7:03 am
6868
Hi Brad, Here's a refactoring group on Yahoo: http://groups.yahoo.com/group/refactoring/ Cheers, Keith. ... I've really enjoyed this group and learned a lot...
Keith Young
tca_ky
Offline Send Email
May 4, 2004
12:40 pm
6869
... extremeprogramming refactoring domaindrivendesign junit (if Java interests you) -- J. B. Rainsberger, Diaspar Software Services ...
J. B. Rainsberger
nails762
Offline Send Email
May 4, 2004
4:09 pm
6870
... The typical xUnit answer to this question is that you need a custom suite builder. I'm just learning NUnit, so I don't know whether it has a nice feature...
J. B. Rainsberger
nails762
Offline Send Email
May 4, 2004
5:06 pm
6871
Hi, Excuse me if I am wrong in my answer here :) But, perhaps you could use something like Ant to automate the process. Ant: http://ant.apache.org/ Ant has...
Keith Young
tca_ky
Offline Send Email
May 4, 2004
6:42 pm
6872
I've done a similar thing in Ruby using an SMTP server that was based on providing user-defined callback routines to the skeletal server for each of the ...
Al Chou
HotFusionMan
Offline Send Email
May 5, 2004
3:41 am
6873
There's been a bit of discussion about unit testing UIs recently, so I thought I'd throw this question/recent experience at the group. I found this bit of...
Jonathan Oddy
jonathanoddy
Offline Send Email
May 5, 2004
9:47 am
6874
Thank you all for your opinions and suggestions!...
femketerhaar
Offline Send Email
May 5, 2004
8:57 pm
6875
Thanks Does the NAnt NUnit task now work with NUNit 2.0? I get the error - Object Reference Not Set to instance of an object when the NUnit test is run from...
Sonali Dev
sonaliDev
Offline Send Email
May 5, 2004
8:57 pm
6876
Hi all I am developing LDAP access java code, which technology should I use to test the LDAP access? for example, to access RDB, I can use ldap, but for ldap ,...
stone
stone0660
Offline Send Email
May 6, 2004
6:27 am
6877
Assuming you are using JNDi and that you want to test your JNDI calls without a running LDAP server you should check out the JNDI DSML v2.0 Service Provider...
Martin Wegner
marty_wegner
Online Now Send Email
May 6, 2004
2:08 pm
6878
... Sonali, Just a quick philosophical question... why do you want to run the tests in a particular order? Jim...
Jim Ivey
jamescivey
Offline Send Email
May 6, 2004
2:17 pm
6879
Sorry if this has been beaten to death, but I'm trying to figure out how to use mocks in a TDD .NET application. We started using a test database but that's...
Alex Pukinskis
alexpukinskis
Offline Send Email
May 6, 2004
9:39 pm
6880
... I don't use NAnt, I use Ant, so I don't know. Can someone else field this? -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com...
J. B. Rainsberger
nails762
Offline Send Email
May 6, 2004
10:02 pm
6881
... This sounds very neat. Does anyone have any experience with this? -- J. B. Rainsberger, Diaspar Software Services http://www.diasparsoftware.com :: +1 416...
J. B. Rainsberger
nails762
Offline Send Email
May 6, 2004
10:19 pm
6882
From: "Alex Pukinskis" <alex.lists.at.satoridesign.com@...> Sent: Thursday, May 06, 2004 5:39 PM Subject: [TDD] mocking db objects that...
yahoogroups@...
jhrothjr
Offline Send Email
May 6, 2004
10:37 pm
6883
Hi Alex What we usually do is storing test data in an xml file along with the test classes and use the LoadXML method of the DataSet class to load test data in...
flogu01
Offline Send Email
May 6, 2004
10:41 pm
6884
... database ... produce ... How ... test ... hardcoded ... Hi Alex What we usually do is storing test data in an xml file along with the test classes and use...
flogu01
Offline Send Email
May 6, 2004
10:41 pm
6885
As I build out a class, I refactor the code into private helper methods, leaving only the primary methods as public. Unfortunately, this approach means that I...
uthelred
Offline Send Email
May 6, 2004
10:42 pm
6886
... What do you want to test? What can you get wrong when using an LDAP directory? I suppose you could get connection information wrong. Create a separate ...
J. B. Rainsberger
nails762
Offline Send Email
May 7, 2004
12:57 am
6887
... I take a different route: for queries, I verify two things -- 1. Do I have the right SQL string? 2. Can I make a domain object correctly from a row? ...
J. B. Rainsberger
nails762
Offline Send Email
May 7, 2004
12:59 am
6888
... One school of thought: * if the method is important enough to test, then it is probably important enough to be on someone's public interface, so consider ...
J. B. Rainsberger
nails762
Offline Send Email
May 7, 2004
1:34 am
6889
I should have written more in my original response. We use the DSML service provider for all of our unit testing related to JNDI/LDAP. We have our LDAP info...
Martin Wegner
marty_wegner
Online Now Send Email
May 7, 2004
2:40 am
6890
I've seen that argument, and Smalltalkers will point out that Smalltalk doesn't have private access, and *that* didn't make the sky fall, but...I've worked...
Tony Nassar
aanassar
Offline Send Email
May 7, 2004
1:19 pm
6891
... Using something like NAnt to build your system, it is trivial to build a version of the same assembly which doesnt include the tests - which is certainly...
Nick Robinson
fromconcept
Offline Send Email
May 7, 2004
2:20 pm
Messages 6862 - 6891 of 28238   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