M
Martin Gregorie
We are currently writing a series of regression tests for a complex
application. Each test extends a generic test class, itself a subclass
of JUnit, with inline code that creates a test message, inputs it and
then evaluates the results to generate a pass/fail evaluation.
We'd like to use javadoc to document the set of tests. This means that
we are uninterested in outputting anything except the class description
and two method descriptions - IOW we really, really don't need the links
to inherited classes and methods in the test documentation because its
just repetitive junk that is the same for every test and in any case is
already documented elsewhere as part of the testing engine.
Finally my questions:
- has anybody tried using javadoc this way
- were you able to suppress the list of inherited methods etc
- how did you do it.
TIA
Martin
application. Each test extends a generic test class, itself a subclass
of JUnit, with inline code that creates a test message, inputs it and
then evaluates the results to generate a pass/fail evaluation.
We'd like to use javadoc to document the set of tests. This means that
we are uninterested in outputting anything except the class description
and two method descriptions - IOW we really, really don't need the links
to inherited classes and methods in the test documentation because its
just repetitive junk that is the same for every test and in any case is
already documented elsewhere as part of the testing engine.
Finally my questions:
- has anybody tried using javadoc this way
- were you able to suppress the list of inherited methods etc
- how did you do it.
TIA
Martin