Package org.gradle.tooling.events.test
Interface TestMetadataEvent
- All Superinterfaces:
ProgressEvent
- All Known Subinterfaces:
TestFileAttachmentMetadataEvent,TestKeyValueMetadataEvent
An event emitted by tests that contain additional data about the test.
To access data from the event:
TestLauncher launcher = ...;
launcher.addProgressListener(new ProgressListener() {
void statusChanged(ProgressEvent event) {
if (event instanceof TestMetadataEvent) {
if (event instanceof TestFileAttachmentMetadataEvent) {
// Do something with file attachment
} else if (event instanceof TestKeyValueMetadataEvent) {
// Do something with key-values
} else {
// ignore unrecognized events
}
}
}
});
- Since:
- 8.13
- See Also:
-
Method Summary
Methods inherited from interface org.gradle.tooling.events.ProgressEvent
getDescriptor, getDisplayName, getEventTime