Is it possible to access the blocks inside the model under test from the test harness in custom criteria script of simulink test?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jerome Almon
am 13 Aug. 2024
Kommentiert: Fangjun Jiang
am 13 Aug. 2024
I would like to verify the datatype of inports and outports of a model in simulink test. So I created a test harness for it and when I try to access the inports inside the model under test in test harness from the custom cirteria script of simulink test, it doesnt work.
function ioAnalysisFunc(test)
res = get_param(strcat(test.sltest_bdroot, '/Model1/Inport1'), 'OutDataTypeStr'); % Here test.sltest_bdroot is the test harness 'Model1_Harness'
assignin('base', 'ress_out', res{1});
end
The error thrown is,
--------------------------------------------------------------------
Error occurred in custom criteria and custom criteria assessment did not run to completion.
--------- Error ID: ---------
Simulink:Commands:InvSimulinkObjectName
-------------- Error Details: --------------
Invalid Simulink object name: 'Model1_Harness/Model1/Inport1'.
--------------------------------------------------------------------
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 13 Aug. 2024
I think the testing harness model is using the Model block to reference the model under test, so you can't access the block directly like that inside a model reference.
I would suggest getting the data type of the signal that is feeding into "Inport1". In most cases, it is the same as the data type of the output of "Inport1".
2 Kommentare
Fangjun Jiang
am 13 Aug. 2024
Not sure if you are familar with Model Reference. Modle under test is referenced this way.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Inputs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!