How do I rename a test case in Test Manger in a command line?

6 ビュー (過去 30 日間)
MathWorks Support Team
MathWorks Support Team 2019 年 12 月 10 日
編集済み: MathWorks Support Team 2019 年 12 月 10 日
I would like to rename test case below in the Test Manager with scripts* *for testing automation. The test case is generated by Simulink Design Verifier(SLDV) after generating test cases.
I cannot change the name of the test case when it is being generated. After the test case is generated, the name should be changed in a command line.

採用された回答

MathWorks Support Team
MathWorks Support Team 2019 年 12 月 10 日
Please find commands below.
tf = sltest.testmanager.TestFile('testFile.mldatx'); %Existing Test File
ts = getTestSuites(tf);
tc = getTestCases(ts)
tc(1).Name = 'ChanagedName'; % Assuming there is only 1 test case in the file, change it accordingly.
saveToFile(tf)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInputs についてさらに検索

タグ

タグが未入力です。

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by