EmulatorSnapshots
@Incubating interface EmulatorSnapshots
| FailureRetention | This interface is deprecated. Renamed to EmulatorSnapshots | 
Options for configuring Android Test Retention.
When enabled, Android Test Retention automatically takes emulator snapshots on test failures.
Summary
| Public functions | |
|---|---|
| Unit | Call this function to take unlimited number of test failure snapshots (will ignore maxSnapshotsForTestFailures setting) | 
| Public properties | |
|---|---|
| Boolean | Enables snapshot compression. | 
| Boolean | Enables automated test failure snapshots. | 
| Int | Maximum number of failures that would be snapshotted. | 
Public functions
retainAll
fun retainAll(): Unit
Call this function to take unlimited number of test failure snapshots (will ignore maxSnapshotsForTestFailures setting)
Public properties
enableForTestFailures
var enableForTestFailures: Boolean
Enables automated test failure snapshots. Default to false.
maxSnapshotsForTestFailures
var maxSnapshotsForTestFailures: Int
Maximum number of failures that would be snapshotted. Any failures after the first $maxSnapshotsForTestFailures will not have snapshots. Default to 2. Must be >0
