Interface TestReporter

    • Method Detail

      • publishEntry

        void publishEntry​(Map<String,​String> map)
        Publish the supplied map of key-value pairs as a report entry.
        Parameters:
        map - the key-value pairs to be published; never null; keys and values within entries in the map also must not be null or blank
        See Also:
        publishEntry(String, String), publishEntry(String)
      • publishEntry

        default void publishEntry​(String key,
                                  String value)
        Publish the supplied key-value pair as a report entry.
        Parameters:
        key - the key of the entry to publish; never null or blank
        value - the value of the entry to publish; never null or blank
        See Also:
        publishEntry(Map), publishEntry(String)
      • publishEntry

        @API(status=STABLE,
             since="5.3")
        default void publishEntry​(String value)
        Publish the supplied value as a report entry.

        This method delegates to publishEntry(String, String), supplying "value" as the key and the supplied value argument as the value.

        Parameters:
        value - the value to be published; never null or blank
        Since:
        5.3
        See Also:
        publishEntry(Map), publishEntry(String, String)