Effacer les filtres
Effacer les filtres

How to change SIMULATION OUTPUTS settings programmatically in TestManager?

9 vues (au cours des 30 derniers jours)
How do I programmatically change the option in TestManager?
I'm tring to change the state of the checkbox named as 'Plot signals on the specified plots after simulation' which is one of SIMULATION OUTPUTS settings in TestManager(in detail, Test Case).

Réponse acceptée

Angelo Yeo
Angelo Yeo le 29 Mar 2024
% Open the model sltestFlutterSuppressionSystemExample for example.
openExample('sltestFlutterSuppressionSystemExample')
% Open test suite and test case. And set the property accordingly.
tf = sltest.testmanager.TestFile('sltestFlutterCriteriaTest.mldatx')
ts = tf.getTestSuites;
tc = ts.getTestCases;
tc.setProperty('PlotSignalAfterSimulation', true); % tc is the test case object
FYI, I tested the script in R2024a.

Plus de réponses (0)

Catégories

En savoir plus sur Test Scripts dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by