Michael Feathers and I are working up a talk that will be a review of effectively 10 years of TDD. The idea is partly just to look at the history, but mainly...
hii all, am new in testing implementation so i need some help i just wrote a simple code( by eclipse ) & i dont know why there is an error & i cant fix it or...
On Fri, Jan 2, 2009 at 6:42 PM, abd elrahman mahmoud ... I see that you basically made the same request a few weeks ago. At that time I suggested some search...
It's time for a little reminder of some of the finer points of JUnit mailing list etiquette. This will be posted now and then; not often enough to be spam, but...
On Mon, Jan 5, 2009 at 9:21 AM, Joakim Ohlrogge ... My initial reaction is that that construct would need global state, or a tricky simulation thereof, which I...
Another way to look at this is to free ourselves from the fetters of Java syntax and semantics for a moment and imagine what we'd like to say about thrown...
... There have been discussions about this since at least 2006: http://tech.groups.yahoo.com/group/junit/message/16313 Hopefully, it becomes less verbose with...
I read the popper example, it's very elegant. Do you have the signature of the .when(emptyList) part? I assume it looks something like <T> T when(T object) and...
Hi Joakim, ... In NUnit, I wrote it as Assert.Throws( typeof(SomeException) ), <delegate> ); where <delegate> can be a named delegate, the name of a method or...
Yes closures would be nice... sigh :) if you can't change your language, change your language I guess :) On Mon, Jan 5, 2009 at 8:21 PM, Charlie Poole ... -- ...
So no one else has to Google, that means March 12-14, 2008. Michael/Steve, how quick are you hoping to get feedback? The Last Responsible Moment? Or...
Do you think the overall ease of use to people who need this feature will be worth a 20% increase in complexity for everyone who needs to understand the ...
On Tue, Jan 6, 2009 at 6:27 AM, tuomaskarkkainenri < ... Let's push on that. What would be the ideal hook here? David Saff ... [Non-text portions of this...
Hi guys, I'm new in the group and I couldn't find anything on testing combination in the title. I have applicationContext.xml where EntityManagerFactory is ...
Whenever you can... It's not supposed to be a "serious" official record, just throw in anything that you think is relevant. I'm particularly interested in what...
It depends what you have in your Spring XML. Often it is the equivalent of "new" statements, defining the internal structure of the code, rather than...
Hi, Have you looked at Spring integration testing support? http://static.springframework.org/spring/docs/2.5.x/reference/testing.html#testcontext-framework ...
David, any elegant idea that comes to my mind revolves around the notion that for a test method in a non-static inner class, the top level class that declares...
Thanks for the reference. I did something that works, but it works only when I do "mvn test". I cannot run test alone. I use AbstractJpaTests and those two...