tap4j is an implementation of the TAP -Test Anything Protocol - forJava. TAP is a standard way to document test execution. There are two main roles in TAP, a producer and a consumer.
TheTAP Producer is responsible for producing aTAP Stream. Usually the TAP Stream is written to a file. The following is an example of a TAP Stream.
1..4ok 1 - Input file openednot ok 2ok 3 - Read the rest of the file# Yeah, you can comment your TAP Streamnot ok 4 - Summarized correctly # TODO Not written yet
Test your TAP withInstantTAP.
TheTAP Consumer read and parses a TAP Stream. The user of the TAP Consumer can then utilize its data to build graphs, integrate systems, log tests executions or produce cool test reports.