A simple testing framework, inspired by the xUnit framework family, for Java. I'm following along with Kent Beck's Test-Driven Development: By Example book.
The main goal of this project is to create a testing framework (with a Test-Driven Development approach) and use this framework to test the framework itself (yeap, I know, it's a pretty weird idea).
Currently, the framework can run tests and report the results. It also supports setUp
and tearDown
methods.
- Invokes the test method
- Invokes the setup method first
- Invokes the teardown method last
- Invokes tear down even if the test method fails
- Run multiple tests
- Reports test results
- Catches and reports errors during setup