对于TestStand 4.0和更高版本:
- 在您的sequence中添加一个新的Statement步骤。
- 将以下代码插入Expression文本框中:RunState.Engine.UnloadAllModules()。
对于TestStand 3.5和更早版本:
- 选择ActiveX Adapter。
- 将新的Action步骤添加到sequence中。
- 右键单击新步骤,然后选择Specify Module 。
- 在Edit ActiveX/COM Adapter窗口中,将以下字段设置为相应的值:
- Object Reference:
RunState.Engine
. - Automation Server: NI TestStand API <Your TestStand Version> (Ver 1.0).
- Object Class: Engine (IEngine).
- Action: Call Method.
- Method:
UnloadAllModules
.
您也可以通过将Sequence Context发送到code module中并使用ActiveX功能来调用UnloadAllModules的方法。