@@ -234,6 +234,22 @@ private ConfigTags() {}
234234 public static final Tag <Boolean > JacocoCoverageAccumulate = Tag .from ("JacocoCoverageAccumulate" , Boolean .class ,
235235 "Sets whether Jacoco coverage will be accumulated across the run sequences" );
236236
237+ /**
238+ * Replay settings
239+ */
240+
241+ public static final Tag <Boolean > GenerateReplayableSequence = Tag .from ("GenerateReplayableSequence" , Boolean .class ,
242+ "Sets whether TESTAR must create a replayable testar file during Generate mode (this consumes more memory during execution)" );
243+
244+ public static final Tag <Double > ReplayRetryTime = Tag .from ("ReplayRetryTime" , Double .class ,
245+ "Inside the replay mode, establishes the time window in seconds for trying to replay a UI action of a replayed test sequence" );
246+
247+ public static final Tag <Boolean > UseRecordedActionDurationAndWaitTimeDuringReplay = Tag .from ("UseRecordedActionDurationAndWaitTimeDuringReplay" , Boolean .class ,
248+ "Inside the replay mode sets whether to use the action duration (ActionDuration and TimeToWaitAfterAction) as specified in the generated test sequence" );
249+
250+ public static final Tag <String > PathToReplaySequence = Tag .from ("PathToReplaySequence" , String .class ,
251+ "The sequence to REPLAY is the one indicated in this parameter" );
252+
237253 /**
238254 * Additional settings with descriptions
239255 */
@@ -268,18 +284,12 @@ private ConfigTags() {}
268284 public static final Tag <Boolean > OnlySaveFaultySequences = Tag .from ("OnlySaveFaultySequences" , Boolean .class ,
269285 "Sets whether to save test sequences without failures" );
270286
271- public static final Tag <Double > ReplayRetryTime = Tag .from ("ReplayRetryTime" , Double .class ,
272- "Inside the replay mode, establishes the time window in seconds for trying to replay a UI action of a replayed test sequence" );
273-
274287 public static final Tag <Boolean > StopGenerationOnFault = Tag .from ("StopGenerationOnFault" , Boolean .class ,
275288 "Sets whether to finish a test in the presence of a fail (e.g. Suspicious Tag detected)" );
276289
277290 public static final Tag <Double > TimeToFreeze = Tag .from ("TimeToFreeze" , Double .class ,
278291 "Sets the time window, in seconds, for which to wait for a not responding SUT. After that, the test will finish with a fail" );
279292
280- public static final Tag <Boolean > UseRecordedActionDurationAndWaitTimeDuringReplay = Tag .from ("UseRecordedActionDurationAndWaitTimeDuringReplay" , Boolean .class ,
281- "Inside the replay mode sets whether to use the action duration (ActionDuration and TimeToWaitAfterAction) as specified in the generated test sequence" );
282-
283293 public static final Tag <Boolean > VisualizeActions = Tag .from ("VisualizeActions" , Boolean .class ,
284294 "Sets whether to display overlay information, inside the SPY mode, for all the UI actions derived from the test set up" );
285295
@@ -289,9 +299,6 @@ private ConfigTags() {}
289299 public static final Tag <Boolean > UseSystemActions = Tag .from ("UseSystemActions" , Boolean .class ,
290300 "ANDROID: Indicate if add system calls" );
291301
292- public static final Tag <String > PathToReplaySequence = Tag .from ("PathToReplaySequence" , String .class ,
293- "The sequence to REPLAY is the one indicated in this parameter" );
294-
295302 public static final Tag <Double > RefreshSpyCanvas = Tag .from ("RefreshSpyCanvas" , Double .class ,
296303 "Time in milliseconds that indicates the frequency of refreshing the screen in SPY mode" );
297304
0 commit comments