Class AutomationEngine.Options
- java.lang.Object
-
- com.google.android.filament.utils.AutomationEngine.Options
-
- Enclosing class:
- AutomationEngine
public static class AutomationEngine.Options extends java.lang.ObjectAllows users to toggle screenshots, change the sleep duration between tests, etc.
-
-
Field Summary
Fields Modifier and Type Field Description intminFrameCountSimilar to sleepDuration, but expressed as a frame count.floatsleepDurationMinimum time that automation waits between applying a settings object and advancing to the next test case.booleanverboseIf true, test progress is dumped to the utils Log (info priority).
-
Constructor Summary
Constructors Constructor Description Options()
-
-
-
Field Detail
-
sleepDuration
public float sleepDuration
Minimum time that automation waits between applying a settings object and advancing to the next test case. Specified in seconds.
-
minFrameCount
public int minFrameCount
Similar to sleepDuration, but expressed as a frame count. Both the minimum sleep time and the minimum frame count must be elapsed before automation advances to the next test.
-
verbose
public boolean verbose
If true, test progress is dumped to the utils Log (info priority).
-
-