> How could I run my own junit tests on the project? Do I need to use the ant > test target? how do I run only my own tests rather than all of the test > suits?
Eclipse is your friend. It is the best way to run / debug individual tests. > Is there any executable code that would help in testing within the project > or is it all relying on the junit tests? Passing junit tests is the primary indicator of the project health. POI includes examples, look at the files in ./src/examples relative to the project root. Most of them have Java main() interface. If you do major modifications then it is a good idea to run examples and ensure they produce correct and readable output. Yegor --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
