Verification case
A verification case is a kind of case whose result is a verdict on whether the subject of the case satisfies certain requirements. A typical verification case includes a set of verification actions that collect data about the subject, analyze it, and evaluate the results based on the objective to produce a verdict.
Creating verification case usage and definition elements
Creating verification case usage and definition elements via the Textual Editor
To create verification case usage and definition elements via the Textual Editor
- In the Textual Editor, place the cursor where you want to create the element and declare the keyword:
verification def for a verification definition.
- verification for a verification usage.
- Specify the element name.
- Specify the verification features in the element body.
- Click the Synchronize button.
verification def VehicleMassTest { // verification definition
subject testVehicle : Vehicle;
objective vehicleMassVerificationObjective {
verify vehicleMassRequirement;
}
action collectData {
// ...
}
action processData {
// ...
}
action evaluateData {
// ...
}
return verdict : VerificationCases::VerdictKind = evaluateData.verdict;
}verification vehicleMassTest : VehicleMassTest; // verification usage
Creating verification case usage and definition elements via the Create Element command
To create verification case usage and definition elements via the Create Element command
In the Containment tree, right-click an element, and in the shortcut menu, click Create Element.
- In the Create Element dialog, select one of the following:
- verification def to create a verification definition element.
- verification to create a verification usage element.
- Name the element.
- Specify the verification features.
Creating verification case usage and definition elements via the view palette
To create verification case usage and definition elements via the view palette
- In the view palette, under the Cases group, click one of the following:
- The verification def button to create a part definition element.
- The verification button to create a part usage element.
If the needed button is not displayed, click the down-facing arrow next to either the verification or the verification def button and select the needed button in the dropdown menu.
- Click in the view pane where you want to create the element symbol.
- (Optional) Specify the verification features.
Auto-creating verification case definition elements via the Extract Definition commands
To auto-create verification case definition elements via the Extract Definition commands
- See the (2026x Refresh1) Extract Definition and Usage page.