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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 9829 - 9858 of 34997   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9829 Donaldson, John (GEO)
geo_johnfr Offline Send Email
Jun 1, 2005
12:06 pm
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(...
9830 Ron Jeffries
ronaldejeffries Offline Send Email
Jun 1, 2005
12:13 pm
... 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...
9831 avinap77 Offline Send Email Jun 1, 2005
3:15 pm
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...
9832 scrly Offline Send Email Jun 1, 2005
3:16 pm
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...
9833 Anthony Williams
anthony_w.geo Offline Send Email
Jun 1, 2005
3:27 pm
... 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,...
9834 Justin Knowlden
jaknowlden Offline Send Email
Jun 1, 2005
3:35 pm
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 ...
9835 Robert Hanson
mvarobert1 Offline Send Email
Jun 1, 2005
3:42 pm
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...
9836 Adrian Howard
ajh65537 Offline Send Email
Jun 1, 2005
3:56 pm
... 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...
9837 Robert Hanson
mvarobert1 Offline Send Email
Jun 1, 2005
4:49 pm
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...
9838 Rob Park
rpark68 Offline Send Email
Jun 1, 2005
5:20 pm
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...
9839 Greg Akins
angrygreg Offline Send Email
Jun 1, 2005
5:54 pm
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,...
9840 Bob Koss
rskoss Offline Send Email
Jun 1, 2005
6:00 pm
FitNesse (www.fitnesse.org) and its included HtmlFixture for testing web apps. ... Robert S. Koss, Ph.D. Senior Consultant www.objectmentor.com...
9841 Greg Akins
angrygreg Offline Send Email
Jun 1, 2005
6:28 pm
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. ...
9842 Bob Koss
rskoss Offline Send Email
Jun 1, 2005
6:45 pm
... 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...
9843 Steve Freeman
smg_freeman Offline Send Email
Jun 1, 2005
7:46 pm
... 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...
9844 Udi Dahan
udidahan7 Offline Send Email
Jun 1, 2005
7:57 pm
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...
9845 Greg Akins
angrygreg Offline Send Email
Jun 1, 2005
8:19 pm
I agree. Does a combination of Fitness.org & the standard xUnit tests cover all the bases (test external interfaces, integration, UI, regression)? If that...
9846 Adrian Howard
ajh65537 Offline Send Email
Jun 2, 2005
7:34 am
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"...
9847 banshee858 Offline Send Email Jun 2, 2005
4:05 pm
... 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....
9848 Mike
ocean_west_2005 Offline Send Email
Jun 2, 2005
5:09 pm
... 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...
9849 Anderson, Kelly
kellycoinguy Online Now Send Email
Jun 2, 2005
5:17 pm
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...
9850 Charlie Poole
cpoole98370 Offline Send Email
Jun 2, 2005
5:51 pm
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...
9851 PanManPhil Offline Send Email Jun 2, 2005
6:25 pm
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...
9852 PanManPhil Offline Send Email Jun 2, 2005
6:25 pm
... 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...
9853 yahoogroups@...
jhrothjr Offline Send Email
Jun 2, 2005
6:25 pm
From: "Mike" <michael.net.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
9854 avinap77 Offline Send Email Jun 2, 2005
6:25 pm
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...
9855 Greg Akins
angrygreg Offline Send Email
Jun 2, 2005
6:34 pm
After that, can those tests be setup from a distributed environment with virtual users to create a stress testing tool?...
9856 Robert Hanson
mvarobert1 Offline Send Email
Jun 2, 2005
7:15 pm
... 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...
9857 Rob Park
rpark68 Offline Send Email
Jun 2, 2005
7:21 pm
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....
9858 Anderson, Kelly
kellycoinguy Online Now Send Email
Jun 2, 2005
8:19 pm
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...
Messages 9829 - 9858 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