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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6412 - 6441 of 28695   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6412
Hi all, I just created a new project on sourceforge with the goal to create a plugin for Eclipse which supports TDD. (java only) Its source code is based on a...
Carsten Behring
carsten_behring
Offline Send Email
Mar 1, 2004
2:34 pm
6413
I started based on a thread in netnews. I originally mailed this to Phlip, but he proposed it was more acceptable for him for it to be in a public forum. Note...
hukolau@...
nicklandsberg
Offline Send Email
Mar 1, 2004
2:34 pm
6414
I don't use EasyMockNET, but I use the same architecture that Dave does in my C# apps and I haven't had any problems. Could you describe the problems that...
Bob Koss
rskoss
Offline Send Email
Mar 1, 2004
2:35 pm
6415
Greetings. I am interested to see if solutions/tools exist out there to make my testing of persisting objects to the database a little easier. Basically I need...
dmitriy75
Offline Send Email
Mar 1, 2004
2:35 pm
6416
Is there anybody using EasyMockNET for doing mockobjects in C#? I have some problems with it and I don't know where to go. Thanks...
juanma_cervera
Offline Send Email
Mar 1, 2004
2:35 pm
6417
... Seems some have misunderstood: Phlip is himself a TDD guru who's himself writing a book on test-first user interfaces (see the sig of the OP). He...
John Platte
ryanplatte
Offline Send Email
Mar 1, 2004
2:35 pm
6418
... You may be interested in Ron Jeffries new book "Adventures in C#" ... I have not read it but most of the material (from what I understand) has evolved from...
Shane Mingins
shanemingins
Offline Send Email
Mar 1, 2004
2:35 pm
6419
You probably want the following article, which I think is quite good: www.peterprovost.org/ Test-Driven%20Development%20in%20.NET.pdf I don't strictly follow...
Mike
stallings_mike1
Offline Send Email
Mar 1, 2004
2:36 pm
6420
... I'm having similar difficulties. I'm working on pattern-matching software; the public classes will have very limited interfaces, e.g., int Find(string...
Tony Nassar
aanassar
Offline Send Email
Mar 1, 2004
2:37 pm
6421
Hi Tony, ... That's fine. That can just provide a public facade to the system (the matcher in this case). I don't know C#, but Java has the idea of a package...
Dave Astels
astelsd
Online Now Send Email
Mar 1, 2004
7:24 pm
6422
Dave et al., C# has an "internal" keyword that's used for about the same purpose, though it means "internal to an assembly," which doesn't quite correspond to...
Tony Nassar
aanassar
Offline Send Email
Mar 2, 2004
9:05 pm
6423
... C# can declare a class or methods internal, which gives visibility throughout the assembly, but not outside. This would work in this context to allow tests...
Ian Cooper
ian_hammond_...
Offline Send Email
Mar 2, 2004
9:05 pm
6424
What would the harm be in calling it only from tear-down? Provided the system state is only changed by your unit tests, you should always be in a more-or-less...
lhramer
Online Now Send Email
Mar 2, 2004
9:05 pm
6425
On 26 Feb 2004, at 23:54, Bret Pettichord wrote: [snip] ... That would be my inclination. Code seems clear and simple. Optimisation code looks like it would be...
Adrian Howard
ajh65537
Offline Send Email
Mar 2, 2004
9:06 pm
6426
Thank you I have read the article, and has me clarified certatain aspects. Besides, I am reading David Astels's book and learning a lot. Thanks....
juanma_cervera
Offline Send Email
Mar 2, 2004
9:07 pm
6427
Hullo Dmitriy, ... You could use something like FIT or Fitnesse (http://fitnesse.org/), xUnit or any other testing framework for a) and e). What is appropriate...
darach_ennis
Offline Send Email
Mar 2, 2004
9:07 pm
6428
If it really doesn't work, you could try nmock ;-) www.nmock.org S....
Steve Freeman
smg_freeman
Offline Send Email
Mar 2, 2004
9:07 pm
6429
... I'm not sure what you're trying to accomplish with this project. Under the features section of your webpage, the only thing I see that the current jUnit...
Brian Christopher Rob...
bcrtrw
Offline Send Email
Mar 2, 2004
9:07 pm
6430
I know this is not the NMock forum, but guessing we have quite a few users on the list. Does anyone know if NMock is suppose to work with operator overloading....
Paris, Nathan
nsparis
Online Now Send Email
Mar 4, 2004
7:58 am
6431
... Also, there is already a similar project which seems to be much more advanced: http://pag.csail.mit.edu/~saff/continuoustesting.html Take care, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Mar 4, 2004
7:58 am
6432
Or, <cough>You could try DotNetMock</cough> www.sourceforge.net/projects/dotnetmock ;) -Griffin...
Griffin Caprio
griffinc18
Online Now Send Email
Mar 4, 2004
7:58 am
6433
... The Junit plugin does not: -Rerun all tests automaticly on each build -Marking failed tests in the source code (similar to compile errors or tasks) If we...
Carsten Behring
carsten_behring
Offline Send Email
Mar 4, 2004
7:59 am
6434
Thanks Steve I have try it, but the same problems. I have try with EasyMockNET and with NMock, and I have similar problems with methods with ArrayList...
juanma_cervera
Offline Send Email
Mar 4, 2004
7:59 am
6435
... Eclipse supports this directly using the Tools Builder feature. I do this with Ruby: I run all my tests on every automatically-started build (press Save). ...
J. B. Rainsberger
nails762
Offline Send Email
Mar 4, 2004
4:43 pm
6436
I am trying to learn TDD. So far I've read Kent Beck's book "Test-Driven Development by Example". I have a few more books on my To-Read list now including some...
Edwin G. Castro
edwing_castro
Offline Send Email
Mar 7, 2004
5:01 pm
6437
Hi there all 'yall. I'm sorry to continue this thread so late, but I'm just catching up on over 2000 messages :-( Anyway... a) A testcase may not be have an...
Amir Kolsky
kolsky
Offline Send Email
Mar 7, 2004
5:01 pm
6438
Consider the MVC pattern. Never call the domain objects from the UI, call them through controllers. The GUI becomes an external actor (the view) and has no...
Amir Kolsky
kolsky
Offline Send Email
Mar 7, 2004
5:02 pm
6439
I've recently posted an article on my blog on how the nature of TDD is somewhat different than what many usually think, and what holes TDD has as a single...
udidahan7
Offline Send Email
Mar 7, 2004
5:02 pm
6440
... I like the feature the Continous Testing plugin provides: You can configure it to run failed tests first in the next run. I have some problems running it...
Ilja Preuss
ipreussde
Offline Send Email
Mar 7, 2004
5:02 pm
6441
... I really don't want to generalize here and it looks to me like the requirement is probably justified and well thought out. Nevertheless, I'd like to add...
Pascal Roy
pascal_roy_1967
Offline Send Email
Mar 7, 2004
5:02 pm
Messages 6412 - 6441 of 28695   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