summary property
The simplest way to interpret a result.
Required Possible string values are:
- "unset" : Do not use. For proto versioning only.
- "success" : The test matrix run was successful, for instance: - All the test cases passed. - Robo did not detect a crash of the application under test.
- "failure" : A run failed, for instance: - One or more test case failed.
- A test timed out. - The application under test crashed.
- "inconclusive" : Something unexpected happened. The run should still be considered unsuccessful but this is likely a transient problem and re-running the test might be successful.
- "skipped" : All tests were skipped, for instance: - All device configurations were incompatible.
- "flaky" : A group of steps that were run with the same configuration had both failure and success outcomes.
Implementation
core.String? summary;