SimulinkTestの入力データをテスト結果に含める設定について
2 ビュー (過去 30 日間)
古いコメントを表示
Simulink Testで等価性テストを自動で行うスクリプトを作成しています。
以下の「入力データをテスト結果に含める」にチェックを入れるスクリプトを作成したいのですが、
ドキュメントを確認しても見つかりませんでした。
スクリプトでの設定方法をご存じでしたら教えていただきたいです。
0 件のコメント
採用された回答
Atsushi Ueno
2024 年 7 月 20 日
Test Manager で変更しているのは Test Case の Properties です。
Set test case property にそれらしきプロパティがありました。
動作確認していませんが多分これです。
tf = sltest.testmanager.TestFile('API Test File');
ts = createTestSuite(tf,'API Test Suite');
tc = createTestCase(ts,'baseline','Baseline API Test Case');
getProperty(tc,'SaveInputRunInTestResult')
setProperty(tc,'SaveInputRunInTestResult',true)
getProperty(tc,'SaveInputRunInTestResult')
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で ビッグ データの処理 についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!