| |

Junit EE – Quick over view

 

 

JUNIT EE Observation

JUnitEE is free software for unit testing in a J2EE environment and useful for manual testing / manually run test cases inside your application server.

  • JUnit provides the framework for writing your unit tests, and JUnitEE gives you the possibility to run these tests inside your application server. This has the advantage of testing your EJB/servlet-based application in the same environment it will run when in production.
  • It is composed primarily of a servlet which outputs the test results as html or xml .

 

  • Tests are packaged conveniently into a .war file which can easily be moved between servers; you can leave the .war file in the main .ear file and simply avoid enabling the test web application on the production server.
  • Test classes will be dynamically reloaded by the app server (assuming your server supports this).
  • Test cases look just like your production code, and can use the same beans (or whatever) you use as a facade for your EJBs.
  • http://www.junitee.org/usersguide.html Here in this user’s guide you can find how to configure dependent jar’s , configurations and sample Junit Ee testrunner .

External links :

 

The current stable release is 1.10, available for download at sourceforge.net.

http://sourceforge.net/project/showfiles.php?group_id=31476 (or )

http://sourceforge.net/projects/junitee/files/

 

Junit Ee Home page : http://www.junitee.org/

Github : https://github.com/orionll/JUnitEE

http://c2.com/cgi/wiki?JunitEe

 

 

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *