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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 9829 - 9858 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9829
Is there an easy way to mock a .NET web service? Naively, I just tried to create a dynamic mock using the web service. Something like this: "new DynamicMock(...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Jun 1, 2005
12:06 pm
9830
... I think I'd start by doing just that. Because I don't know a better way, and I like wrappers anyway. Ron Jeffries www.XProgramming.com Prediction is very...
Ron Jeffries
ronaldejeffries
Offline Send Email
Jun 1, 2005
12:13 pm
9831
Hi I'm working on a search engine. Even after fine refactoring, I end up with a core function which will recieve many search-paramaters entered by a user and...
avinap77
Offline Send Email
Jun 1, 2005
3:15 pm
9832
My company is looking into doing TDD but much of our product is coded as client side javascript. I have only found two approaches on the net for unit testing...
scrly
Offline Send Email
Jun 1, 2005
3:16 pm
9833
... Start with the simple stuff --- a simple query for one thing. Write the tests for that, and the code that generates the corresponding SQL. Once that works,...
Anthony Williams
anthony_w.geo
Offline Send Email
Jun 1, 2005
3:27 pm
9834
My first option would be to start over and re-write the search engine using TDD. If that is not an option for you, you can read Michael Feathers "Working ...
Justin Knowlden
jaknowlden
Offline Send Email
Jun 1, 2005
3:35 pm
9835
I think the key is, you end up with a single sql statement. Focus on one input at a time. I'd guess you can have -no entry-, or an entry in one of several...
Robert Hanson
mvarobert1
Offline Send Email
Jun 1, 2005
3:42 pm
9836
... There's also a new kid on the block TestSimple[1] which is a port of Perl's testing framework to JavaScript. Not used it in anger yet so can't really...
Adrian Howard
ajh65537
Offline Send Email
Jun 1, 2005
3:56 pm
9837
I've been using JsUnit to test server-side javascript; it can be a little frustrating at times, but serves the purpose. Can't offer advice on client-side...
Robert Hanson
mvarobert1
Offline Send Email
Jun 1, 2005
4:49 pm
9838
Just a couple thoughts: 1. Do you have a coverage tool? JCoverage or Clover? This will help you analyze the paths through your complexity. 2. Perhaps you...
Rob Park
rpark68
Online Now Send Email
Jun 1, 2005
5:20 pm
9839
I'm trying to add to my organizations testing capabilities. This isn't really a TDD issue... Because I'm trying to automate the subsequent integration tests,...
Greg Akins
angrygreg
Offline Send Email
Jun 1, 2005
5:54 pm
9840
FitNesse (www.fitnesse.org) and its included HtmlFixture for testing web apps. ... Robert S. Koss, Ph.D. Senior Consultant www.objectmentor.com...
Bob Koss
rskoss
Offline Send Email
Jun 1, 2005
6:00 pm
9841
Thanks. I keep looking at that and wishing I could find some time to investigate. It would solve a lot of problems I have with our development process. ...
Greg Akins
angrygreg
Offline Send Email
Jun 1, 2005
6:28 pm
9842
... The problem that I have with such tools is that if either the UI or the underlying business logic changes, the tests break. I prefer to test the business...
Bob Koss
rskoss
Offline Send Email
Jun 1, 2005
6:45 pm
9843
... Seconded. The .Net libraries can be difficult to TDD with directly because so much is locked down. If you do this consistently, you end up with your domain...
Steve Freeman
smg_freeman
Offline Send Email
Jun 1, 2005
7:46 pm
9844
I suggest looking at Juval Lowy’s example of interface-based web services (HYPERLINK "http://www.idesign.net/"www.idesign.net under downloads). This could...
Udi Dahan
udidahan7
Offline Send Email
Jun 1, 2005
7:57 pm
9845
I agree. Does a combination of Fitness.org & the standard xUnit tests cover all the bases (test external interfaces, integration, UI, regression)? If that...
Greg Akins
angrygreg
Offline Send Email
Jun 1, 2005
8:19 pm
9846
On 1 Jun 2005, at 18:52, Greg Akins wrote: [snip] ... [snip] Perl's WWW:Mechanize[1] / HTTP::Recorder[2] combination is a useful one. It's more "script"...
Adrian Howard
ajh65537
Offline Send Email
Jun 2, 2005
7:34 am
9847
... Spend sometime with Fit or Fitnesse. Ward Cunningham and Rick Mugridge has written a GREAT book (Fit for Developing Software) explaining how to use Fit....
banshee858
Offline Send Email
Jun 2, 2005
4:05 pm
9848
... How does FIT actually run our code, and/or get through all the necessary security and pull up our web pages, and then check the results? I would just...
Mike
ocean_west_2005
Offline Send Email
Jun 2, 2005
5:09 pm
9849
I would suggest two things from my experiences in using CodeSmith and thinking about TDD in that context. First, I suggest using TDD to develop your codebehind...
Anderson, Kelly
kellycoinguy
Offline Send Email
Jun 2, 2005
5:17 pm
9850
Hi Mike, ... If you're working in .NET you want the .NET implementation of FIT. ... Unfortunately, the .NET version doesn't have all the added fixtures that...
Charlie Poole
cpoole98370
Offline Send Email
Jun 2, 2005
5:51 pm
9851
The news release is at: http://sourceforge.net/forum/forum.php?forum_id=470926 For TDD purposes there are a few choice morsels I think. - database reset...
PanManPhil
Offline Send Email
Jun 2, 2005
6:25 pm
9852
... that ... database ... The just released version of SnapDAL aids in this process (for sql server only at this point). The style it supports is to create a...
PanManPhil
Offline Send Email
Jun 2, 2005
6:25 pm
9853
From: "Mike" <michael.net.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Jun 2, 2005
6:25 pm
9854
First of all - thanks to everybody for the fast and helpful replies. Rob: I'm afraid we're using VB6, so I'm not sure which coverage tools are available.. if...
avinap77
Offline Send Email
Jun 2, 2005
6:25 pm
9855
After that, can those tests be setup from a distributed environment with virtual users to create a stress testing tool?...
Greg Akins
angrygreg
Offline Send Email
Jun 2, 2005
6:34 pm
9856
... Robert: I'm not sure a heuristic-test (such as "make sure the resulting SQL statement contains this or that column) you suggested would be satifying.. gut...
Robert Hanson
mvarobert1
Offline Send Email
Jun 2, 2005
7:15 pm
9857
Sorry forgot to consider you might not be working in Java, so some of the tools I'd use may or may not be available to you. WRT testing the generated SQL vs....
Rob Park
rpark68
Online Now Send Email
Jun 2, 2005
7:21 pm
9858
This method is really slow and tedious, but it would work for your situation... since it doesn't sound like thousands of lines of code or anything... Get your...
Anderson, Kelly
kellycoinguy
Offline Send Email
Jun 2, 2005
8:19 pm
Messages 9829 - 9858 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