Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ide_transprop [2020/05/04 18:29] admin created |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Transition/ | ||
- | //>> | ||
- | |||
- | A transition/ | ||
- | |||
- | {{http:// | ||
- | |||
- | |||
- | ---- | ||
- | ==== Property Definition ==== | ||
- | |||
- | * Event ID - required, a unique identifier you assign to this transition. It should not contain any spaces, dash " | ||
- | * Target State - required, dropdown list of all states. Select the next state this transition will take the application to. | ||
- | * Description - a freetext description to document what this transition is about and what it does. | ||
- | * Tags - requirements id or any identifier for requirements traceability. Multiple tags are allowed separate by semi-colon. | ||
- | * Assert ID - a unique id to used to raise the defect in ALM when the transition fails, requires ALM plugin and ALM configuration. | ||
- | * Color - optionally you can set a color for this transition. The transition is depicted with an arrow going from one state to another. | ||
- | * Weight - dropdown list of weights you can assign to this transition to enfluence the probability this transition is chosen by RandomSequencer and GreedySequencer. | ||
- | * Traverses Required - minimum number of times this transitions must be traversed. Usually this is set to 1, but you can assigne any number greater than 1 to force testing this transition multiple times or 0 if the coverage on this transition is optional. | ||
- | * [[#Guard Conditions|Guard]] - specify a condition which must evaluate to true before the transition can be executed. (Rel 3.0.22) | ||
- | * [[#Set Var|Set Var]] - sets a var to the specified value when the transition is traversed. (Rel 3.0.22) | ||
- | * [[#Guard Hint / Satisfying Hint | Guard Hint]] - used to aid sequencer to find the transition to resolve the current transition' | ||
- | * [[#Guard Hint / Satisfying Hint| Satisfying Hint]] - used to aid sequencer to identify the transition to help resolve a transition guard failure. (Rel. 4.4.7) | ||
- | * Response Max (ms) - maximum number of milliseconds when exceeded to add the traversal of this transition to the slow performance tally. | ||
- | * Action Delay (ms) - number of milliseconds to delay after Action trigger is executed. This is used to slow down the testing if your application is experiencing the performance at this particular transition. This setting overrides the setting [[mbt node|mbt node]]. | ||
- | |||
- | Click on the button " | ||
- | |||
- | ---- | ||
- | ==== Guard Conditions ==== | ||
- | |||
- | Guard conditions are used to selectively turning on and off a transition based on mScript expression which evaluates to true or false (see [[mScriptFunc|mScriptFunc]]). | ||
- | |||
- | Guard condition is specified with an mscript expression. Typically you would use any of the boolean operation mscript functions, e.g. $compare(), $isTrue(). | ||
- | |||
- | You may nest the mscript function calls. | ||
- | |||
- | For example, | ||
- | |||
- | | ||
- | |||
- | or more complex expression like: | ||
- | |||
- | | ||
- | |||
- | With Rel. 3.2 (new), you may use [[Guard Trigger|Guard trigger]] for multiple and complex guard conditions. | ||
- | |||
- | ---- | ||
- | ==== Guard Hint / Satisfying Hint ==== | ||
- | |||
- | When traversing the model, sequencers must deal with the transitions/ | ||
- | |||
- | //Hint// is a code or series of codes assigned to transitions/ | ||
- | |||
- | * //Guard Hint// - hint used to find transition/ | ||
- | * // | ||
- | |||
- | //Hint// may be shared by multiple transitions/ | ||
- | |||
- | If multiple //hints// are assigned (separated by comma), any of the //hints// will be sufficient to satisfy the demanding transition/ | ||
- | |||
- | |||
- | ---- | ||
- | ==== Set Var ==== | ||
- | |||
- | Set var is triggered when the transition is traversed and the variable specified is automatically set to the value evaluated from the expression specified in "Set Var" field. This is just is equivalent to calling the mscript function $setVar(' | ||
- | |||
- | |||
- | Set Var takes the following format: | ||
- | |||
- | | ||
- | |||
- | Both varName and value must be static value and can not be an expression. You can also set the variable using the mScript function // | ||
- | |||
- | |||