Test Metadata Event
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
}
}
}
});
Content copied to clipboard
Since
8.13