Overview

This Eclipse plugin provides

  • a view on test stories written in Java showing
    • all test case class names for a given unit under test (UUT).
    • all UUT class names for a given test case class.
    • easy to read test story sentence derived from the method name.
    • JUnit categories the test belongs to.
  • a view that can be sorted and filtered.
  • navigation from the UUT to the test case(s) and vice versa
    • from the view table.
    • from the selected unit in the project or package view.
Shows the testdoc view on a UUT

Test Stories

A test story is another name for a test method, where the name of the method can be read as a sentence that reveals a feature of the unit under test (UUT), and the body shows how to use this feature.

To get the bigger picture of using test stories, please refer to the testdoc-tools project this plugin is part of. There you will also find links on how to integrate a test story report in your Maven project build.

Prerequisites

This plugin can only be used, if the test cases are annotated with the Uut annotation. So there is manual step to take.

Shows two declaration using the @Uut annotation

Getting Started

To get started, please use our update site documentation to install the plugin into your Eclipse IDE.

Then read about