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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 25434 - 25463 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25434
... Post here - because we need less NUnit..! :) Abraços, Josué. ... [Non-text portions of this message have been removed]...
Josue Barbosa dos San...
josuebsantos
Offline Send Email
Sep 2, 2007
2:04 am
25435
I have a feature to implement- charge credit card of customer,when a daily cron runs,and finds not enough balance in customers account.Now,how can I go about...
kumbhkaran_21
Offline Send Email
Sep 4, 2007
7:09 pm
25436
I would create a façade class to interface with the PaymentGateway. It should have only methods you need and deal only with those gateway calls that you need...
Charlie Poole
cpoole98370
Offline Send Email
Sep 4, 2007
7:54 pm
25437
... I have worked in this area before. Your Payment Gateway should provide a test server. Often there is a different Webservice or Port. Talk to your Payment...
geoffrey_slinker
geoffrey_sli...
Offline Send Email
Sep 5, 2007
2:56 am
25438
Yes, certainly create a façade to the gateway. To do the 'study' as you call it (often called a spike), do it as a piece of TDD. That is, call out to the...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Sep 5, 2007
6:56 am
25439
A new binary release of DbFit is now on available. Grab it from https://sourceforge.net/project/showfiles.php?group_id=191053&package_id=224326 DbFit is an...
Gojko Adzic
gojko_lastname
Offline Send Email
Sep 5, 2007
1:09 pm
25440
Anybody have any experience with an integration framework for Ruby? I have found that unit testing does not pin down the interaction of the objects enough. ...
Joseph Gutierrez
gutzofter
Offline Send Email
Sep 5, 2007
2:29 pm
25441
Hi Philip, Thanks for the reply. See inline. -T [TNS] <snip> ... We need to start by narrowing the terms down. A test _case_ is a function that Assembles test...
Tennis Smith
tennis_smith
Offline Send Email
Sep 5, 2007
4:21 pm
25442
[Tip: learn to use your editor's reply-ticks feature!] ... One important design goal is "DRY" code. That means Don't Repeat Yourself. The source code you...
Phlip
phlipcpp
Offline Send Email
Sep 5, 2007
5:00 pm
25443
... Firstly, we do "developer tests". The strict definition of "unit test" implies you only need to search one unit to find the cause for a test failure....
Phlip
phlipcpp
Offline Send Email
Sep 6, 2007
12:56 am
25444
I apologize if this is the wrong forum. Please redirect me if necessary. Just thought 1 of you might know. If I want to build .NET 3.5 code (e.g. LINQ, etc)...
Rob Park
rpark68
Online Now Send Email
Sep 6, 2007
2:27 am
25445
I use the csc task which works fine in 2.0. For 3.5 I swapped it out temporarily with an <exec> task and it just calls the command line compiler. You can go...
Bil Simser
sim0099
Offline Send Email
Sep 6, 2007
2:40 am
25446
Philip, Thank you! I see what you mean about violating LSP. I tried to figure out what led me down this path, it looks like it was state based testing. I redid...
Joseph Gutierrez
gutzofter
Offline Send Email
Sep 6, 2007
2:52 am
25447
Whew. After a long sojourn maintaining repeated, predictable legacy code in a scenario where TDD is impractical, I finally get to develop some of my own code...
Brady Kelly
bradyklly
Offline Send Email
Sep 6, 2007
11:41 am
25448
... NAnt also calls MSBuild without any problems. :) At least in 2.0. /bs...
Brad Stiles
bradley.stiles@...
Send Email
Sep 6, 2007
11:55 am
25449
... (Phillip makes some comments about the difference between the unit/integration/system/acceptance concept and the "developer facing/customer facing"...
Matt Heusser
heusserm
Offline Send Email
Sep 6, 2007
12:10 pm
25450
I have a feature to implement,which involves series of steps to be performed.Its a system action,initiated by another system action(a cron).We have started...
kumbhkaran_21
Offline Send Email
Sep 6, 2007
5:29 pm
25451
We are writing test first.But the feature we are implementing,we need to touch the database too.Now,instead of using an interface,and mocks,we are actually...
kumbhkaran_21
Offline Send Email
Sep 6, 2007
5:31 pm
25452
... Tests which touch the database and tests which mock the database are different in kind, and very likely you will need some of each. Most people write both...
michaelgburton
Offline Send Email
Sep 6, 2007
6:04 pm
25453
Hi Kumbhkaran, ... Normally, I would test 1) Each step 2) The object that sequences steps (using dummy steps or mocks) 3) The object that tells the sequencer...
Charlie Poole
cpoole98370
Offline Send Email
Sep 6, 2007
7:32 pm
25454
We have NAnt calling msbuild to compile our csproj files. It works great. I haven't totally learned msbuild, yet, but I am not in any rush, since I agree that...
Corey Haines
coreyhaines
Offline Send Email
Sep 7, 2007
3:08 am
25455
The file is called 'test_duck_squeezer.rb'. As you can tell all three tests pass, but if I was to run these three in deployment, I would fail. It is because of...
Joseph Gutierrez
gutzofter
Offline Send Email
Sep 7, 2007
4:33 am
25456
Hi, We are writing unit tests for database access calls,against development database,located on a server.This database is shared by all developers.Is this a...
kumbhkaran_21
Offline Send Email
Sep 7, 2007
6:58 pm
25457
... You should try to use a test double for your database as much as possible. For the tests where you really need a database, it's best if each developer has...
Bob Koss
rskoss
Offline Send Email
Sep 7, 2007
7:10 pm
25458
Each developer should have the entire solution - including database - on their local machine. A new developer should be able to be up and running within...
Adam Dymitruk
adymitruk
Offline Send Email
Sep 7, 2007
7:34 pm
25459
... database ... I think if you alrerady have the shared server you should first try using it. For many scenarios it should work OK. if and when you run into...
Avi Naparstek
avinap77
Offline Send Email
Sep 8, 2007
1:26 pm
25460
Hi, I read the posts in this group with interest and I've had some great advice in the past on TDD & agile/xp. Sorry as it's a bit off topic but I'm having...
paul_s_harrington
paul_s_harri...
Offline Send Email
Sep 8, 2007
3:00 pm
25461
Do you have all the Vista updates for Visual Studio? there's at least one patch ... I've had no difficulty installing VS2005 Pro from original media to Vista ...
Andrew Badera
andrewbadera
Offline Send Email
Sep 8, 2007
3:04 pm
25462
... problems. Yep. ... Nope. I'm just doing it for Rails, via Ruby on Steel, because Netbeans is so freaking slow and fragile. I'm sure MS won't have those...
Phlip
phlipcpp
Offline Send Email
Sep 8, 2007
3:09 pm
25463
... Are you installing it from a CD/DVD or on your hard drive? I looked through our KB and saw one case where someone was running into this when installing...
Cory Foy
cory_foy
Offline Send Email
Sep 8, 2007
4:07 pm
Messages 25434 - 25463 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