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 8711 - 8740 of 28695   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8711
... Nope this wasn't intended as bait. The blog I quoted simply confirmed my experience (java v Python) that xml scratches an itch in java (struts configs, ejb...
steven.hale@...
siphoninfo
Offline Send Email
Mar 1, 2005
8:16 am
8712
The problem with XML and code is that the code starts to know about the XML. Perhaps the root node, perhaps that an element exists at the place in the...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Mar 1, 2005
8:51 am
8713
... "Did you listen to a word I said?" "You said 'flip'! Hur, Hur, Hur, <snigger>" (Sorry, I recently watched some of "100 greatest cartoons", which showed a ...
Anthony Williams
anthony_w.geo
Offline Send Email
Mar 1, 2005
11:07 am
8714
This is certainly true for any XML we design to be read by our own code. However, we generally do not write tests to verify the functionality of third-party...
Steven Gordon
sfman2k
Offline Send Email
Mar 1, 2005
2:21 pm
8715
Steven, you are right to call me to task. I was just musing about XML and code, and I have, I now see, drifted a long way off-topic. John D. ... From: Steven...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Mar 1, 2005
6:38 pm
8716
AnyUnit C/C++ Edition add-in for Visual Studio 2003 .NET is available for download at http://www.anyunit.com. AnyUnit is a unit testing environment that allows...
ru551an
Online Now Send Email
Mar 2, 2005
2:50 am
8717
... I would prefer this: public class WelcomePageTest extends TestCase { assertTrue(isHandled("/Welcome")); } private boolean isHandled(String url) { ...
J. B. Rainsberger
nails762
Offline Send Email
Mar 2, 2005
4:00 am
8718
... Which would result in a false negative if the struts-config.xml file provides a path with wildcards (e.g., **/Welcome or /Wel*) which maps to the...
Ian D. Stewart
idstewart2000
Offline Send Email
Mar 2, 2005
4:31 am
8719
... For myself, one of the major wins of deployment descriptors is that they allow non-programmers (sys admins and implementation engineers are the ones I've...
Ian D. Stewart
idstewart2000
Offline Send Email
Mar 2, 2005
4:41 am
8720
I know that NUnit is the granddaddy of Dot.Net testing, but I personally have been running into its limitations and they are starting to bug me. I was...
banshee858
Offline Send Email
Mar 2, 2005
7:38 pm
8721
Could you share what limitations are hurting you? ... From: banshee858 [mailto:cnett858@...] Sent: 02 March 2005 19:38 To:...
Richard Howells
loopylozzysdad
Offline Send Email
Mar 2, 2005
8:13 pm
8722
... The first one that REALLY bugs me is no database rollback support. Adding it requires a lot of subclassing and other nasty things. When I try to introduce...
banshee858
Offline Send Email
Mar 2, 2005
9:18 pm
8723
... It took me about 20 minutes to develop a base class for unit tests that use database rollback. I can't fathom what "subclassing and nasty things" means. ...
Brad Wilson
bradw_64
Offline Send Email
Mar 2, 2005
9:27 pm
8724
... I agree it would nice if it was there, because when you can use it, it's very convienient. ... I've been burned the other way as well where I expected to...
Philip Nelson
PanManPhil
Offline Send Email
Mar 2, 2005
9:54 pm
8725
So far, I have been happy with using the Setup and TestFixtureSetup attributes to get the database to my start point. Effectively they do a delete all...
Richard Howells
loopylozzysdad
Offline Send Email
Mar 2, 2005
11:35 pm
8726
Hi Carlton, Interesting observations... ... Good call... The NUni teamt has resisted making NUnit anything but a unit-testing tool in the past. I've reached...
Charlie Poole
cpoole98370
Offline Send Email
Mar 3, 2005
12:42 am
8727
My approach in cases like this has been to - baseline the state of the records I'm interested in, so I've got a known starting point (with some way of storing...
Paul Jenkins
pauljenkins714
Offline Send Email
Mar 3, 2005
1:09 am
8728
... Marc, Do you mean that the spring configuration files make the testing harder? - Yagiz Erkan - http://yagiz.blogspot.com http://www.erkans.com...
Yagiz Erkan
yagizerkan@...
Send Email
Mar 3, 2005
2:54 am
8729
Hello, I am working with ASP.Net 2.0 beta and attempting to use some of its new features while continuing with NUnitAsp driven development. I'm making use of...
hanshasuro
Offline Send Email
Mar 3, 2005
2:54 am
8730
... More the case that they hide some of the application behaviour from the unit testing. As a result, critical application behaviour (the app won't work...
Marc Hamann
gmhamann
Offline Send Email
Mar 3, 2005
4:21 am
8731
... I organize tests with these heuristics, in this order: 1. By common fixture objects 2. By common behavior under test 3. By common class under test 4....
J. B. Rainsberger
nails762
Offline Send Email
Mar 3, 2005
5:57 am
8732
... Customer Tests -- J. B. (Joe) Rainsberger Diaspar Software Services http://www.diasparsoftware.com Author, JUnit Recipes: Practical Methods for Programmer...
J. B. Rainsberger
nails762
Offline Send Email
Mar 3, 2005
5:58 am
8733
... In fact, that's right. ... Yes: I didn't know which object to test. Now I do. If I ever test another Struts application, I'll do that. (This is why we...
J. B. Rainsberger
nails762
Offline Send Email
Mar 3, 2005
6:01 am
8734
CALL FOR SUBMISSIONS 2005 International Symposium on Wikis Oct 17-18, 2005, San Diego, California, U.S.A. Co-located with ACM OOPSLA 2005 ...
Dirk Riehle
dirkriehle
Offline Send Email
Mar 3, 2005
7:49 am
8735
I am trying to figure out the best way to test if my menuitems are hooked up correctly. My menu control notifies me that some menu item has been clicked and...
David Winslow
david@...
Send Email
Mar 3, 2005
11:42 am
8736
... That's exactly what we're currently suffering from in one of our projects. I think it's part of the learning curve but some of our developers prefered to...
Yagiz Erkan
yagizerkan@...
Send Email
Mar 3, 2005
12:30 pm
8737
... ?!!?!?!? How in the /world/ would someone be able to do /that/?! Do you have an example? If my objects talk to each other through well-defined interfaces...
J. B. Rainsberger
nails762
Offline Send Email
Mar 3, 2005
1:12 pm
8738
One way: inherit MyMenuHelper from MenuHelper. Give MyMenuHelper a constructor which supplies a Form (the form you will call) (or even better the interface to...
Donaldson, John (GEO)
geo_johnfr
Offline Send Email
Mar 3, 2005
2:34 pm
8739
I would think the ctl00 portion comes from an interface like INamingContainer so as to guarantee unique names for child controls. I haven't used ASP.NET 2.0...
Brandon Hunt
brandonh6k
Offline Send Email
Mar 3, 2005
2:52 pm
8740
... I don't have experience with the 2.0, but it sounds very similar to what I encountered when I first started using it. I created by own INamingContainer to...
Cory Foy
Cory.Foy@...
Send Email
Mar 3, 2005
3:03 pm
Messages 8711 - 8740 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