FailureDetailResponse

data class FailureDetailResponse(val crashed: Boolean, val deviceOutOfMemory: Boolean, val failedRoboscript: Boolean, val notInstalled: Boolean, val otherNativeCrash: Boolean, val timedOut: Boolean, val unableToCrawl: Boolean)

Details for an outcome with a FAILURE outcome summary.

Constructors

Link copied to clipboard
fun FailureDetailResponse(crashed: Boolean, deviceOutOfMemory: Boolean, failedRoboscript: Boolean, notInstalled: Boolean, otherNativeCrash: Boolean, timedOut: Boolean, unableToCrawl: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If the failure was severe because the system (app) under test crashed.

Link copied to clipboard

If the device ran out of memory during a test, causing the test to crash.

Link copied to clipboard

If the Roboscript failed to complete successfully, e.g., because a Roboscript action or assertion failed or a Roboscript action could not be matched during the entire crawl.

Link copied to clipboard

If an app is not installed and thus no test can be run with the app. This might be caused by trying to run a test on an unsupported platform.

Link copied to clipboard

If a native process (including any other than the app) crashed.

Link copied to clipboard

If the test overran some time limit, and that is why it failed.

Link copied to clipboard

If the robo was unable to crawl the app; perhaps because the app did not start.