使用sltest.testmanager.run函数,同一个脚本里已有的图形句柄会被删除,为什么
2 views (last 30 days)
Show older comments
f = uifigure; % 创建图形界面
tf = sltest.testmanager.TestFile('E:\RS220105\dd\dd.mldatx'); % 获取test file
ts = tf.getTestSuiteByName('newGroup'); % 获取test suite
ts = ts.getTestSuiteByName('newCase');
tc = ts.getTestCaseByName('newCase simulation'); % 获取test case
run(tf); % 运行test case,不明白为啥run的时候,图形界面f会被删除
0 Comments
Answers (1)
See Also
Categories
Find more on Results, Reporting, and Test File Management in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!