Status enum
Where the test is in its process of running.
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
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