11-01-2022 12:53 PM
I have used preUUT window in teststand with some conditions. If the condition was true I want to terminate the whole sequence and run postuut. Now i have used terminate all function to terminate application on preUUT sequence but it won't terminate .
Anyone give me some suggestion to terminate sequence properly while the preUUT condition fails.
11-02-2022 05:36 PM
Please look at your PreUUT sequence. You will find that it has a boolean, Parameters.ContinueTesting. Use an expression step to set Parameters.ContinueTesting. Example: Parameters.ContinueTesting = !condition. If condition is true then Parameters.ContinueTesting will be false. The process model reads this and will stop the test.