TestMetadataEvent

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

Inheritors

Functions

Link copied to clipboard
Link copied to clipboard
abstract fun getDisplayName(): String
Link copied to clipboard
abstract fun getEventTime(): Long