I know what unit testing is in general and what JUnit is in particular. But here I see that there is a project called JUnitEE which seems to me to be a wrapper over JUnit. So I would like to better understand the pain point of using vanilla JUnit and how JUnitEE is able to solve those problems.
It seems not so much a wrapper or replacement for JUnit, but an extension of JUnit to allow running tests on a J2EE app server. There are many similar projects, such as HTTPUnit for testing web application UIs and DBUnit for making Database fixtures easier.
But JunitEE hasn’t been updated in almost 10 years, so I doubt it’s very useful for (or even compatible with) modern Java EE applications.
3