How do I import a test harness with an existing model reference?

조회 수: 2 (최근 30일)
Pat Canny
Pat Canny 2019년 10월 30일
답변: Pat Canny 2019년 10월 30일
I accidentally "disassociated" a test harness model with its parent model. What is the easiest way to re-associate the harness model?

채택된 답변

Pat Canny
Pat Canny 2019년 10월 30일
One way to do this is through sltest.harness.import, which allows you to import a stand-alone model as a test harness model.
If you created a harness using the "parent" model as the unit under test (similar to a model reference), use the "parent" model name as the 'ComponentName' in sltest.harness.import
Here is a simple example:
mainModel = 'UnlimitedFreeTacosModel'; % free tacos need not only be on Tuesdays
harnessModel = 'UnlimitedFreeTacosModel_harness'; % ensure this works on all the other days of the week
load_system(mainModel)
sltest.harness.import(mainModel,'ImportFileName',harnessModel,'ComponentName',mainModel,'Name',harnessModel(1:end-4));
save_system(mainModel)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Test Harnesses에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by