Jenkins is a continuous integration tool. It is used to run builds and
continuously check the health of the project. If a test fails or the build breaks, it sends
emails to the dev team to immediately alert everyone of regressions.
The XUnit plugin allows Jenkins to tie
into testing tools. The tool just has to create an XML output file in the standard
XUnit format. Jenkins will fail the build
if the file shows errors.
Install
Install Jenkins
Install the XUnit plugin
Create a build
Add the something similar to the following to a shell build step. This script will run your
funcunit tests and copy the testresults.xml file into where jenkins wants it
Jenkins is a continuous integration tool. It is used to run builds and continuously check the health of the project. If a test fails or the build breaks, it sends emails to the dev team to immediately alert everyone of regressions.
The XUnit plugin allows Jenkins to tie into testing tools. The tool just has to create an XML output file in the standard XUnit format. Jenkins will fail the build if the file shows errors.
Install