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;