Skip to content

A simple testing framework, inspired by the xUnit framework family, for Java

Notifications You must be signed in to change notification settings

mpedroni/xunit-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java xUnit

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.

Implemented (and tested!) requirements

  • 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

About

A simple testing framework, inspired by the xUnit framework family, for Java

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages