SpringUnit is a framework that enables Java developers to create unit tests where test data is separate from tests algorithms. Writing tests this way:
- enables easy addition of test cases that differ only in their inputs and expected outputs
- facilitates reuse of data values across test cases
- reduces Java source code devoted to the creation and retrieval of data values
- promotes and supports a style that removes redundant test algorithmic code
- Category: Testing Tools
- License: Apache Software License
- HomePage: http://springunit.sourceforge.net/


