Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.jorphan.test: Javadoc index of package org.apache.jorphan.test.


Package Samples:

org.apache.jorphan.test

Classes:

AllTests: Provides a quick and easy way to run all junit unit tests in your java project. It will find all unit test classes and run all their test methods. There is no need to configure it in any way to find these classes except to give it a path to search. Here is an example Ant target (See Ant at Apache ) that runs all your unit tests: <target name="test" depends="compile"> <java classname="org.apache.jorphan.test.AllTests" fork="yes"> <classpath> <path refid="YOUR_CLASSPATH"/> <pathelement location="ROOT_DIR_OF_YOUR_COMPILED_CLASSES"/> ...
UnitTestManager: Implement this interface to work with the AllTests class. This interface allows AllTests to pass a configuration file to your application before running the junit unit tests.

Home | Contact Us | Privacy Policy | Terms of Service