Trait providing an apply method to which status updates about a running suite of tests can be reported.
An Notifier is essentially
used to wrap a Reporter and provide easy ways to send status updates
to that Reporter via an NoteProvided event.
Notifier contains an apply method that takes a string and
an optional payload object of type Any.
The Notifier will forward the passed alert message string to the
Reporter as the message parameter, and the optional
payload object as the payload parameter, of an NoteProvided event.
For insight into the differences between Notifier, Alerter, and Informer, see the
main documentation for trait Notifying.
Trait providing an
apply
method to which status updates about a running suite of tests can be reported.An
Notifier
is essentially used to wrap aReporter
and provide easy ways to send status updates to thatReporter
via anNoteProvided
event.Notifier
contains anapply
method that takes a string and an optional payload object of typeAny
. TheNotifier
will forward the passed alertmessage
string to theReporter
as themessage
parameter, and the optional payload object as thepayload
parameter, of anNoteProvided
event.For insight into the differences between
Notifier
,Alerter
, andInformer
, see the main documentation for traitNotifying
.