Skip to content

Commit

Permalink
Updated step description for transaction steps
Browse files Browse the repository at this point in the history
  • Loading branch information
cjayswal committed Dec 2, 2018
1 parent 20f3527 commit dc506cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/com/qmetry/qaf/automation/step/CommonStep.java
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ public static void mouseOver(String loc) {
* @param threshold
*/
@MetaData("{'qafstep-transaction':true}")
@QAFTestStep(stepName = "startTransactionWithThreshold", description = "start (transaction|time-tracker) for {task-name} with {second}s threshold")
@QAFTestStep(stepName = "startTransactionWithThreshold", description = "start (step|transaction|time-tracker) (for|:) {task-name} with {second}s threshold")
public static void startTransaction(String name, int threshold) {

}
Expand All @@ -2064,13 +2064,13 @@ public static void startTransaction(String name, int threshold) {
* @param name
*/
@MetaData("{'qafstep-transaction':true}")
@QAFTestStep(description = "start (transaction|time-tracker) for {task-name}")
@QAFTestStep(description = "start (step|transaction|time-tracker) (for|:) {task-name}")
public static void startTransaction(String name) {

}

@MetaData("{'qafstep-transaction':true}")
@QAFTestStep(description = "stop (transaction|time-tracker)")
@QAFTestStep(description = "(stop|end) (step|transaction|time-tracker)")
public static void stopTransaction() {

}
Expand Down

0 comments on commit dc506cb

Please sign in to comment.