Class FailureDetail
Details for an outcome with a FAILURE outcome summary.
Implements
Inherited Members
Namespace: Google.Apis.ToolResults.v1beta3.Data
Assembly: Google.Apis.ToolResults.v1beta3.dll
Syntax
public class FailureDetail : IDirectResponseSchema
Properties
Crashed
If the failure was severe because the system (app) under test crashed.
Declaration
[JsonProperty("crashed")]
public virtual bool? Crashed { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DeviceOutOfMemory
If the device ran out of memory during a test, causing the test to crash.
Declaration
[JsonProperty("deviceOutOfMemory")]
public virtual bool? DeviceOutOfMemory { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FailedRoboscript
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.
Declaration
[JsonProperty("failedRoboscript")]
public virtual bool? FailedRoboscript { get; set; }
Property Value
Type | Description |
---|---|
bool? |
NotInstalled
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.
Declaration
[JsonProperty("notInstalled")]
public virtual bool? NotInstalled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
OtherNativeCrash
If a native process (including any other than the app) crashed.
Declaration
[JsonProperty("otherNativeCrash")]
public virtual bool? OtherNativeCrash { get; set; }
Property Value
Type | Description |
---|---|
bool? |
TimedOut
If the test overran some time limit, and that is why it failed.
Declaration
[JsonProperty("timedOut")]
public virtual bool? TimedOut { get; set; }
Property Value
Type | Description |
---|---|
bool? |
UnableToCrawl
If the robo was unable to crawl the app; perhaps because the app did not start.
Declaration
[JsonProperty("unableToCrawl")]
public virtual bool? UnableToCrawl { get; set; }
Property Value
Type | Description |
---|---|
bool? |