Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
I haven't used ejb3unit but it looks like it has potential.
Having said that, I'd also like to point out (like I do in my book) that unit testing EJB 3.0 session beans is so straight-forward that you don't necessarily need third party tools for that.
We are using Ejb3Unit (Ejb3Unit) it in our project (150 devs.) and it's pretty stable, bug fixes are fixed quickly. Without Ejb3Unit the testing ouf our Ejb3 based infrastructure would be very painful (in container frameworks like cactus are too time consuming) - i think it' great framework -
Hey Lasse, especially to test Session beans Ejb3Unit has grat support because it supports Ejb3 dependency injection. You can inject Mock objects (for unit testing) or "real" objects (other Session beans, Entity manager, Datasources) for integration testing. Reg. Dave
Has anyone been able to specify another date format for the CSV file? (I'm using ejb3unit 2.0.0-SNAPSHOT). The class CSVInitialDataSet should have a method called addDateFormat so that you can specify your own date format when working on test data, but I'm not able to find the method in the class. Anyone?
Dave Wiesemeyer wrote:We are using Ejb3Unit (Ejb3Unit) it in our project (150 devs.) and it's pretty stable, bug fixes are fixed quickly. Without Ejb3Unit the testing ouf our Ejb3 based infrastructure would be very painful (in container frameworks like cactus are too time consuming) - i think it' great framework -
Nice to hear that your are using EJB3Unit. I've also done a RND on this. Can you tell me for what sort of tests cab be carried out in Entity and Session beans? If you can please name few test cases. Thanks