Interface TestReporter

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default void publishEntry​(java.lang.String key, java.lang.String value)
      Publish the supplied key-value pair as a report entry.
      void publishEntry​(java.util.Map<java.lang.String,java.lang.String> map)
      Publish the supplied map of key-value pairs as a report entry.
    • Method Detail

      • publishEntry

        void publishEntry​(java.util.Map<java.lang.String,java.lang.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

        default void publishEntry​(java.lang.String key,
                                  java.lang.String value)
        Publish the supplied key-value pair as a report entry.
        Parameters:
        key - the key of the entry to publish
        value - the value of the entry to publish
        See Also:
        publishEntry(Map)