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 7642 - 7671 of 28238   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7642
NUnitAsp v1.5.1 is now available for download. NUnitAsp is a tool for test-driven development of ASP.NET web pages. Version 1.5 includes a modest collection of...
Jim Shore
jimlittle82
Offline Send Email
Dec 1, 2004
5:28 pm
7643
Hi all, I am new to the list! After having put off getting into TDD, I have finally installed NUnit and ordered the book "Test Driven Development in .NET", by...
jetpoet
Offline Send Email
Dec 1, 2004
5:28 pm
7644
I have a simple class that represents X-Y point, that implements ToString() that yields string-representation of the object. How do I test the ToString()...
Roman Gavrilov
clavrg
Offline Send Email
Dec 1, 2004
5:28 pm
7645
... Test the behavior you want to see. 1. Set up instances of the class and assert the expected toString() results. 2. If the results should vary based on some...
George Dinwiddie
gdinwiddie
Offline Send Email
Dec 1, 2004
6:18 pm
7646
Its not quite the problem as far as I can tell and have had experienced. Its not that you have to localize the actual object, the problem is that if you change...
Keith Nicholas
keithatcompac
Offline Send Email
Dec 1, 2004
8:48 pm
7647
To me Option 2 seems also the most reasonable. I would also try to make a point that if it is possible to change the X-T point class, so that Locale ...
Mikhail Shnayderman
mschnayd
Offline Send Email
Dec 1, 2004
10:21 pm
7648
I would tend away from letting the point class know about a locale, it doesn't really care. The only thing that cares is the string creation and in C# if you...
Keith Nicholas
keithatcompac
Offline Send Email
Dec 1, 2004
10:29 pm
7649
Sorry, I have been too long in Java world and forgot about the fact that we maybe talking about a completely different Language. In either case, I am sure you...
Mikhail Shnayderman
mschnayd
Offline Send Email
Dec 1, 2004
10:42 pm
7650
Hi everyone, I was curious to know about what it would take to be an application architect. I am currently a VB/ASP/SQL developer, and am looking to move up on...
Jill Coleman
jill_coleman...
Offline Send Email
Dec 2, 2004
6:46 am
7651
I thought I was doing good writing tests and then I hit a roadblock. I'm hoping someone can help me here: I'm creating an application that allows the user to...
nbsmxs
Offline Send Email
Dec 2, 2004
6:49 am
7652
On Wed, 01 Dec 2004 19:10:15 -0000, Jill Coleman ... The industry has no standard for titles. An "application architect" might be anything from a "senior"...
Russell Gold
russgold
Offline Send Email
Dec 2, 2004
11:15 am
7653
Is this Java? .Net? Win32???? Give us some hints as to the platforms. I don't know about the others, but if its .Net take a look at NUnitForms ...
Mark Levison
marklevison
Offline Send Email
Dec 2, 2004
3:34 pm
7654
Is it possible that you extract some form of abstraction that wllows you to popup dialog boxes. You then can create a mock implementation of the abstraction...
Mikhail Shnayderman
mschnayd
Offline Send Email
Dec 2, 2004
4:15 pm
7655
This is an interesting question. I think that main thing that it takes is experience with building allot of different types of systems or possible allot of...
Mikhail Shnayderman
mschnayd
Offline Send Email
Dec 2, 2004
4:43 pm
7656
... an ... First of all, you have to be self-righteously willing to criticize and reject your coworkers' code again and again until it is 'correct'. ;) But...
Paul
spikehaml
Offline Send Email
Dec 2, 2004
6:14 pm
7657
... Originally, the toString() method in every Java Object was meant as a debugging aid, not as something that would build a string representation for an end...
Jim Murphy
QuantGeek
Offline Send Email
Dec 2, 2004
7:46 pm
7658
... Check out Martin Fowler's article "Who Needs an Architect?", available at http://www.martinfowler.com/ieeeSoftware/whoNeedsArchitect.pdf It describes how...
Jaap Beetstra
jtbeetstra
Offline Send Email
Dec 2, 2004
8:16 pm
7659
Do you really want to test the menu? Isn't it easy to hook it up to something? Or test that is is hooked up, rather than test the invocation? And is it really...
Thomas Eyde
thomas_eyde
Offline Send Email
Dec 2, 2004
8:45 pm
7660
It is strange what kind of reminders we need. It could come from the fact that I don't do Java. I have ignored the ToString() in .NET, now it's time to look...
Thomas Eyde
thomas_eyde
Offline Send Email
Dec 2, 2004
8:48 pm
7661
Oops. I forgot to mention it's a .NET application. Thanks for the link to NUnitForms - I wasn't aware of it (and all the other NUnit addons on SourceForge!). ...
Michael Simpson
nbsmxs
Offline Send Email
Dec 3, 2004
2:22 am
7662
On Thu, 02 Dec 2004 21:45:34 +0100, "Thomas Eyde" <teyde@...> said: <snipped> ... Actually, it does help in the sense that I'm not real happy with the...
Michael Simpson
nbsmxs
Offline Send Email
Dec 3, 2004
2:22 am
7663
All that aside, you simply need to test what it will do (assuming TDD here). If you are going to use toString to print {X,Y} in human readable format, then...
Justin Knowlden
jaknowlden
Offline Send Email
Dec 3, 2004
2:24 am
7664
I'm not sure how to TDD this: my application will have two parts (to keep the story simple) - Gatherer and Displayer. Gatherer gathers information and...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Dec 3, 2004
10:44 am
7665
Michael Simpson December 1, 2004 12:58 PM ... Why? Why not Just Test It? What smells bad to me is all the faking and mocking folks still do to avoid automating...
Thomas L Roche
tlroche
Offline Send Email
Dec 3, 2004
4:12 pm
7666
... Gatherer ... Testing by simulating GUI events is a pain, and it is error prone. Try to avoid it by how you structure the object and view. The object...
Paul
spikehaml
Offline Send Email
Dec 3, 2004
4:29 pm
7667
Paul, thank you for the clear description. I see how this will work, except for the events. ... The mock can fire events for Displayer to respond to. I can add...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Dec 3, 2004
5:56 pm
7668
..and Microsoft has this to say: http://msdn.microsoft.com/architecture/journal/default.aspx?pull=/library/en-us/dnmaj/html/greatarchitect.asp --paul ... ...
Paul Jenkins
pauljenkins714
Offline Send Email
Dec 3, 2004
7:51 pm
7669
well, if you're using NMock, you can do the following: interface IGatherer { event EventHandler Changed; } [Test] void testEvent() { NMock foo = new...
cliff
ypowerdude
Offline Send Email
Dec 3, 2004
8:03 pm
7670
Hi Jon, I ... __________________________________ Do you Yahoo!? All your favorites on one personal page – Try My Yahoo! http://my.yahoo.com...
Mikhail Shnayderman
mschnayd
Offline Send Email
Dec 3, 2004
8:32 pm
7671
Why can't you move the event raising invocation to a method on Gatherer and call that in your test? You could make it protected so that a stub can reach it,...
Thomas Eyde
thomas_eyde
Offline Send Email
Dec 3, 2004
9:01 pm
Messages 7642 - 7671 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