an Ordinal
that can be used to place this event in order in the context of
other events reported during the same run
a localized message suitable for presenting to the user
an optional Throwable
that, if a Some
, indicates why the run has aborted,
or a Throwable
created to capture stack trace information about the problem.
an optional amount of time, in milliseconds, that was required by the run that has aborted
an optional Summary
of the number of tests that were reported as succeeded, failed, ignored, and pending
an optional Formatter
that provides extra information that can be used by reporters in determining
how to present this event to the user
An optional Location
that provides information indicating where in the source code an event originated.
an optional object that can be used to pass custom information to the reporter about the RunAborted
event
a name for the Thread
about whose activity this event was reported
a Long
indicating the time this event was reported, expressed in terms of the
number of milliseconds since the standard base time known as "the epoch": January 1, 1970, 00:00:00 GMT
Comparing this
event with the event passed as that
.
Comparing this
event with the event passed as that
. Returns
x, where x < 0 iff this < that, x == 0 iff this == that, x > 0 iff this > that.
the event to compare to this event
an optional amount of time, in milliseconds, that was required by the run that has aborted
an optional Formatter
that provides extra information that can be used by reporters in determining
how to present this event to the user
an optional Formatter
that provides extra information that can be used by reporters in determining
how to present this event to the user
An optional Location
that provides information indicating where in the source code an event originated.
An optional Location
that provides information indicating where in the source code an event originated.
a localized message suitable for presenting to the user
an Ordinal
that can be used to place this event in order in the context of
other events reported during the same run
an Ordinal
that can be used to place this event in order in the context of
other events reported during the same run
an optional object that can be used to pass custom information to the reporter about the RunAborted
event
an optional object that can be used to pass custom information to the reporter about the RunAborted
event
an optional Summary
of the number of tests that were reported as succeeded, failed, ignored, and pending
an optional Summary
of the number of tests that were reported as succeeded, failed, ignored, and pending
a name for the Thread
about whose activity this event was reported
a name for the Thread
about whose activity this event was reported
an optional Throwable
that, if a Some
, indicates why the run has aborted,
or a Throwable
created to capture stack trace information about the problem.
an optional Throwable
that, if a Some
, indicates why the run has aborted,
or a Throwable
created to capture stack trace information about the problem.
a Long
indicating the time this event was reported, expressed in terms of the
number of milliseconds since the standard base time known as "the epoch": January 1, 1970, 00:00:00 GMT
a Long
indicating the time this event was reported, expressed in terms of the
number of milliseconds since the standard base time known as "the epoch": January 1, 1970, 00:00:00 GMT
Event that indicates a runner encountered an error while attempting to run a suite of tests.
For example, object
Runner
reportsRunAborted
if theexecute
method of any of the run's startingSuite
s completes abruptly with aThrowable
.ScalaTest's
Runner
fires aRunAborted
report with an emptysummary
, because the reporter is responsible for keeping track of the total number of tests reported as succeeded, failed, ignored, and pending. ScalaTest's internal reporter replaces theRunAborted
with a new one that is identical except that is has a definedsummary
.To create instances of this class you may use the factory method. For example, given a report function named
report
, you could fire aRunAborted
event like this:an
Ordinal
that can be used to place this event in order in the context of other events reported during the same runa localized message suitable for presenting to the user
an optional
Throwable
that, if aSome
, indicates why the run has aborted, or aThrowable
created to capture stack trace information about the problem.an optional amount of time, in milliseconds, that was required by the run that has aborted
an optional
Summary
of the number of tests that were reported as succeeded, failed, ignored, and pendingan optional
Formatter
that provides extra information that can be used by reporters in determining how to present this event to the userAn optional
Location
that provides information indicating where in the source code an event originated.an optional object that can be used to pass custom information to the reporter about the
RunAborted
eventa name for the
Thread
about whose activity this event was reporteda
Long
indicating the time this event was reported, expressed in terms of the number of milliseconds since the standard base time known as "the epoch": January 1, 1970, 00:00:00 GMT