Test UUTs Execution Entry Point in the Sequential Process Model
- 更新时间2025-07-23
- 阅读时长2分钟
Open <TestStand>\Components\Models\TestStandModels\SequentialModel.seq in the TestStand Sequence Editor and select the Test UUTs sequence on the Sequences pane to examine the Sequential process model Test UUTs Execution entry point, which performs the following significant actions:
- Calls the Initialize Execution Entry Point plug-in utility sequence.
- Calls the Model Plugins – Begin sequence.
- Calls the ProcessSetup callback.
- Calls the PreUUTLoop callback.
- Initiates the UUT For loop.
- Calls the PreUUT callback. When no more UUTs exist, skips to .
- Calls the Model Plugins – Pre UUT sequence. When no more UUTs exist, skips to .
- Calls the Model Plugins – UUT Start sequence.
- Calls the PreMainSequence callback.
- Calls the MainSequence callback.
- Calls the PostMainSequence callback.
- Calls the Model Plugins – UUT Done sequence.
- Calls the Model Plugins – Post UUT sequence.
- Calls the PostUUT callback.
- Ends the UUT For loop block, looping back to begin the next UUT.
- Calls the PostUUTLoop callback. Performs any cleanup operations related to initialization operations performed in the PreUUT callback here or in the ProcessCleanup callback when the process model exits the UUT loop.
- Calls the ProcessCleanup callback.
- Calls the Model Plugins – End sequence. Custom process model plug-ins should perform any cleanup operations related to initialization operations performed in the Model Plugin – PreUUT entry point here when the process model exits the UUT loop.
相关内容
- TestStand Directory Structure
- Execution Entry Points in the Sequential Process Model
- Plug-in Utility Sequences
- Model Plugin – Begin
- Model Callbacks in the Sequential Process Model
- Model Plugin – Pre UUT
- Model Plugin – UUT Start
- Model Callbacks in the Parallel Process Model
- Model Plugin – UUT Done
- Model Plugin – Post UUT
- Model Plugin – End