Skip to content

3.0.0

Choose a tag to compare

@fleipold fleipold released this 13 Dec 21:27
· 9 commits to master since this release

Features

Making Output Format Configurable

The output format can now be configured using the testReportFormats-setting,
e.g. like this:

testReportFormats := Set(WhiteSpaceDelimited, Html, Json)

Introducing Json Report

The Json format writes a complete Json document for each test case.
The results for test cases are new-line separated.

In addition to the fields that were already in the Html and WhiteSpaceDelimited
format the following fields were added:

  • Start time of individual test

    The timestamp that was originally exposed in the text file and
    the html table was the start of the overall test execution.

    To trouble shoot “interference” issues it is helpful to know when any
    given test case was executed.

  • The full stack trace of the failure

    This should help with diagnosing failed tests.

Bugs fixed

  • Produce report entry for failed test class constructor
  • Add XML declaration to HTML output
  • Adding CSS for sorting table headers