Status enum

Where the test is in its process of running.

Inheritance

Constructors

Status()
const
Status.parse(String name)
factory

Values

pending → const Status

The test has not yet begun running.

running → const Status

The test is currently running.

complete → const Status

The test has finished running.

Note that even if the test is marked complete, it may still be running code asynchronously. A test is considered complete either once it hits its first error or when all expectAsync callbacks have been called and any returned Future has completed, but it's possible for further processing to happen, which may cause further errors.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<Status>
A constant List of the values in this enum, in order of their declaration.