Jim Cakalic wrote: [snip] ... Another "me too"... We aren't actually using Spring yet due to some funky classloader issues with the app server and Commons...
... Thanks for the thoughtful comments. Ron and Bill have been both suggesting this repeatedly to me in this thread, but I'm finding it difficult to be able...
I've got to test a call from a business delegate object to an EJB (Stateless Bean). Consequently, it has to run in a container to get the EJB (I think). The...
David, You're certainly right. Listen, I'm a federal contractor: I would only hope that you don't face the kind of managerial obstructions I do. That my...
... Thanks again for your continuing participation in this thread, Ron. ... Hmmm. I'm not really sure, actually. I was dealing with Path objects. (i.e., file...
I've been using Spring for a while now. On a couple different Java projects in the past and now on a .Net project. If you haven't already read "J2EE w/o...
David ... I may be missing something, but ... ... When you say callers, do you mean tests? If so, well, when we decide some class is no longer useful, its...
... Probably not! :-) ... No, it wasn't just tests using the path objects. The FileSystem (and related objects) were too. (Currently just a MockFileSystem,...
... Yes ... I find that when I have a technical implementation in mind, I often get too locked in on it. Keeping my tests focused on functionality seems to...
This might be off-topic so I apologize in advance. Since yesterday, Nunit GUI has been throwing exceptions on every second run. I put up with that. Now after...
... Somehow, when I read the class names AbsolutePath, RelativePath and BasePath, I assumed that those were all implementing the same interface so that the...
... They did have a common parent - Path. But I can't always just use generic Path references, and so did need to make that distinction in the code....
IMO, you should remove all business logic from the EJB itself into a super class or a class with a common business interface. This way your test context can...
That's what I'm doing now. For this app, however, there is very little logic in the EJBs. In fact, most of them just pass calls from Struts actions to a DAO...
NUnit is unable to delete the cache directory because it's not empty, which probably means that something in the cache is readonly. Find the cache and delete...
Yes I had a guess there and deleted the nunit 2.2 directory from the Temp folders. But then I have to keep doing this every second run. I'll have to check if...
Hi Gishu, ... Are your tests creating temp files next to you assemblies? If so, are you sure you're properly closing any open references to them? I can imagine...
Taking it a step further, if your tests are creating such files, you should ensure that they do so in the original directory, not the shadow directory. See...
Thanks all I finally zero'ed in on AbstractSpoon's TODO_List as Gishu suggested - within a hour or so of playing with the configurations I got it to give me...
OK, Apologies if this is off-topic for this list (please point me in a more appropriate direction in that case.) I'm curious about the code-coverage features...
Hi all. I'd like to ask for your perspective and comments on sometething I'm doing. I've recently been exploring the NHibernate/Activerecord combo for ...
Hi Walter, Oddly enough, I gave a talk a few days ago to the South Sound Dot Net Users Group with title "Is NUnit Dead." Among other things, I demonstrated...
Hi Does anyone here have any experience with BPEL? And how did they apply TDD practices to it? Thanks Shane -- Shane Mingins [Non-text portions of this...
... They are written back to the spreadsheet. The code isn't very pretty, and relies on borders and the such. I dove into it when I started working on the...
Does a BEPL instance have any executional behavior? Given a specific instance (or input), can we expect the result to satisfy some specific propositions? If...
... Sorry for the late reply. I saw you got some good responses. My first question back would be, why did you create mocks? Because somebody said so? The...