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

2 vues (au cours des 30 derniers jours)
Pat Canny
Pat Canny le 30 Oct 2019
I accidentally "disassociated" a test harness model with its parent model. What is the easiest way to re-associate the harness model?

Réponse acceptée

Pat Canny
Pat Canny le 30 Oct 2019
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)

Plus de réponses (0)

Catégories

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

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by