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 14988 - 15017 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14988
When TDD'ing for managed memory cleanup (garbage collection) of your former references, if you create an empty test, is it actually "green" since it is the...
Jim Bennett
jtbennett77
Offline Send Email
Mar 1, 2006
4:20 pm
14989
Interesting topic Jim... I haven't fully thought this through, nor am I familiar enough with the tools available today in C#, but this is a classic example of...
Anderson, Kelly
kellycoinguy
Offline Send Email
Mar 1, 2006
4:48 pm
14990
Hi Kelly, I'm not explicitly testing every class. Garbage collecting is very interesting. If a high level object is collected, this usually means that all of...
Jim Bennett
jtbennett77
Offline Send Email
Mar 1, 2006
5:14 pm
14991
If it were possible to automate this aspect of testing for all your classes at once, using an AOP approach, then you wouldn't have to think so much. ...
Anderson, Kelly
kellycoinguy
Offline Send Email
Mar 1, 2006
6:47 pm
14992
I don't think you are lazy. It's a big problem to try and solve completely. You could say I'm lazy by not testing every class for garbage collection:0 Then...
Jim Bennett
jtbennett77
Offline Send Email
Mar 1, 2006
7:35 pm
14993
Folks... Anyone building and running CppUnit with VS2005? I am getting a bizarre error when trying to link to cppunitd.lib. I get an unresolved external...
Mike Hill
uly562000
Offline Send Email
Mar 1, 2006
8:35 pm
14994
If the API is part of the WHAT then you have to deal with the issue of what the interfaces are in advance... Amir Kolsky XP& Software...
Amir Kolsky
kolsky
Offline Send Email
Mar 1, 2006
10:22 pm
14995
I think there are two different cases here: 1. You're developing a framework and the API is part of the WHAT. 2. You're not doing a framework, and the API is a...
Charlie Poole
cpoole98370
Offline Send Email
Mar 1, 2006
11:33 pm
14996
Hi Mike... A guess, based on other experiences: make sure that the flavor of runtime library (single/multi threaded, etc.) being referenced by CPPUnit is the ...
Charlie Poole
cpoole98370
Offline Send Email
Mar 1, 2006
11:34 pm
14997
Interesting post Jim. To be frank, I'm not entirely sure of the merits of testing a non deterministic system like GC in .Net. Although, I've spent enough time ...
Tim Haughton
haughtontim
Offline Send Email
Mar 2, 2006
8:41 am
14998
Hi Tim, I'm not worried about the physical memory being managed correctly in .Net. I'll have to check out the profiling API a little more. From what I've read,...
Jim Bennett
jtbennett77
Offline Send Email
Mar 2, 2006
3:17 pm
14999
If you're really testing thread-specific storage, that shouldn't be so hard. Couldn't you create multiple threads that each ensure that they get the same...
tottinger
linux_tim
Online Now Send Email
Mar 2, 2006
3:22 pm
15000
For C++ "new" should throw an exception if it can't allocate the memory. The default behavior of some versions of C++ on windows is to return NULL instead, but...
Keith Ray
attkeithray
Offline Send Email
Mar 2, 2006
4:48 pm
15001
A friend works for a team that does unit testing with JUnit... But is interested in using Fitnesse for Acceptance testing. He asked this question "okay, I...
Greg Akins
angrygreg
Offline Send Email
Mar 2, 2006
5:14 pm
15002
... Why? That is, why do you need the answer before writing the first test? Curious, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Mar 2, 2006
5:21 pm
15003
... Some testing is being written. Mostly JUnit against the Business Objects. I think (and I'm answering for my friend now) that management sees a gap in UI...
Greg Akins
angrygreg
Offline Send Email
Mar 2, 2006
5:41 pm
15004
From: "Greg Akins" <angrygreg.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Mar 2, 2006
8:33 pm
15005
I'm the guy with the original question greg helpfully posted here. ... I personally haven't read it, but I believe one or two of our team members have. It's...
jaaronfarr
Offline Send Email
Mar 2, 2006
11:07 pm
15006
... We already have a body of junit tests and are now introducing fitnesse. The question is then which tool when? jaaron...
jaaronfarr
Offline Send Email
Mar 2, 2006
11:08 pm
15007
From: "jaaronfarr" <farra.at.apache.org@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Mar 2, 2006
11:48 pm
15008
Aaron, Sorry I could answer better earlier. You know how time consuming that EJB programming can be;') Not having worked with Fit in a "real" project, I can...
Greg Akins
angrygreg
Offline Send Email
Mar 2, 2006
11:57 pm
15009
From: "Greg Akins" <angrygreg.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Mar 3, 2006
1:11 am
15010
... I guess my point was more along the lines of... I'd rather write Code for my tests than deal with HTML, or Wiki, or anything else that's not "code" ... I...
Greg Akins
angrygreg
Offline Send Email
Mar 3, 2006
1:59 am
15011
Here's the simple plaintext C# code if anyone is interested in the approach: ****the test**** [NUnit.Framework.Test] public void Test() { //might be something...
Jim Bennett
jtbennett77
Offline Send Email
Mar 3, 2006
2:48 am
15012
From: "Greg Akins" <angrygreg.at.gmail.com@...> To: "testdrivendevelopment@yahoogroups.com" ...
yahoogroups@...
jhrothjr
Offline Send Email
Mar 3, 2006
3:00 am
15013
... Whether or not xMock could help you and how would depend entirely on the structure of your code. Just a simple unit test could tell if a classes event...
Tim Haughton
haughtontim
Offline Send Email
Mar 3, 2006
6:32 am
15014
... That's not my experience. Junit is fine for unit tests, but more complex tests can become rather painful. Separating the test definition from the glue code...
Ilja Preuss
ipreussde
Offline Send Email
Mar 3, 2006
8:26 am
15015
... That was my point also (though I apparently didn't express it well). I can only imagine starting a project with Fit tests and having the customer being a...
Greg Akins
angrygreg
Offline Send Email
Mar 3, 2006
2:09 pm
15016
... Yeah, I was probably a little too "absolute" in my statement. I can see how once the initial Fixtures are setup, it would be easier to write those tests. ...
Greg Akins
angrygreg
Offline Send Email
Mar 3, 2006
2:12 pm
15017
Ilja: "his" test, "she" noticed? I'll agree from a slightly different "fun" standpoint: it's pretty gratifying to know you've designed a system that can be...
Jeff Langr
jlangr
Offline Send Email
Mar 3, 2006
2:26 pm
Messages 14988 - 15017 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