I'm looking for a framework to run jUnit tests written for EJB.

What's the best framework? Why?

I've found Arquillian, Mockito and Embeddable API. What the alternative framework besides them?

有帮助吗?

解决方案

A good unit test has a few important characteristics one of which is to Mock external dependencies and for that you'll need a mocking framework. Mockito is a good mocking framework. Jmockit is another one. Arquillian, however, is an integration testing framework and not a unit testing one.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top