Package net.jqwik.api
Interface Reporter
@API(status=MAINTAINED,
since="1.4.0")
public interface Reporter
An interface that can be used to report additional information for a test element,
i.e. a test container or property.
To get access to a reporter object, just add a parameter of type Reporter
to the property method or any lifecycle method.
Reporting additional test information is a JUnit 5 platform feature. Some tools will output this information to stdout; other tools, e.g. Gradle as of version 6, ignore it. That's why jqwik prints this information to stdout itself unless told otherwise.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
publishReport
(String key, Object object) Publish a report aboutobject
under a givenkey
.void
publishReports
(String key, Map<String, Object> objects) Publish reports aboutobjects
under a givenkey
.void
publishValue
(String key, String value) Publish somevalue
under a givenkey
.
-
Method Details
-
publishValue
Publish somevalue
under a givenkey
.- Parameters:
key
- a Stringvalue
- a String
-
publishReport
Publish a report aboutobject
under a givenkey
.This uses the same mechanism used for jqwik's failure reporting.
- Parameters:
key
- a Stringobject
- any object
-
publishReports
Publish reports aboutobjects
under a givenkey
.This uses the same mechanism used for jqwik's failure reporting.
- Parameters:
key
- a Stringobjects
- a map of objects the key of which is used to enumerate them
-