success property
bool
get
success
Whether the test passed successfully (no timeout, no exceptions, exit 0).
Implementation
bool get success => !timedOut && exceptions.isEmpty && exitCode == 0;
Whether the test passed successfully (no timeout, no exceptions, exit 0).
bool get success => !timedOut && exceptions.isEmpty && exitCode == 0;