DiscoveryCompleted

final case class DiscoveryCompleted(ordinal: Ordinal, duration: Option[Long], threadName: String, timeStamp: Long) extends Event

Event that indicates a runner has completed searching for suites.

Value parameters:
duration

an optional amount of time, in milliseconds, that was required by the run that has completed

ordinal

an Ordinal that can be used to place this event in order in the context of other events reported during the same run

threadName

a name for the Thread about whose activity this event was reported

timeStamp

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

class Event
trait Serializable
trait Product
trait Equals
trait Ordered[Event]
trait Comparable[Event]
class Object
trait Matchable
class Any

Value members

Inherited methods

def <(that: Event): Boolean
Inherited from:
Ordered
def <=(that: Event): Boolean
Inherited from:
Ordered
def >(that: Event): Boolean
Inherited from:
Ordered
def >=(that: Event): Boolean
Inherited from:
Ordered
def compare(that: Event): Int

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.

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.

Value parameters:
return

an integer indicating whether this event is less than, equal to, or greater than the passed event

that

the event to compare to this event

Inherited from:
Event
def compareTo(that: Event): Int
Inherited from:
Ordered
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product

Concrete fields

val formatter: Option[Formatter]

Formatter in a DiscoveryCompleted is always set to None.

Formatter in a DiscoveryCompleted is always set to None.

val location: Option[Location]

Location in a DiscoveryCompleted is always set to None.

Location in a DiscoveryCompleted is always set to None.

val payload: Option[Any]

Payload in a DiscoveryCompleted is always set to None.

Payload in a DiscoveryCompleted is always set to None.