aggregate coverage data for multiple unit test models
Ältere Kommentare anzeigen
hello all,
I am trying to aggregate the coverage data for a referenced model which is shared in two (or more) unit test models. I was wondering how to aggregate the coverage data when running both unit tests.
I have tried the following code:
open_system('unit_test_1.slx');
% modify the data dictionary used by the unit test model and referenced model
cv1=cvsim(bdroot);
open_system('unit_test_2.slx');
% modify the data dictionary used by the unit test model and referenced model
cv2=cvsim(bdroot);
cv_total=cv1+cv2;
cvhtml('test.html',cv_total);
For both unit test models coverage is enabled for the referenced models, thus recording the coverage for the shared reference model. However this approach doesn't work because the concatenation of the cvdata object is failing.
Anyone has a clue how to solve this?
thanks in advance, Han Geerligs
1 Kommentar
Pat Canny
am 9 Nov. 2018
Hi Han. What do you mean by "concatenation of the cvdata object is failing"? Are you getting an error? Also, what do you mean by "modify the data dictionary"? Are you changing the model between simulations?
Akzeptierte Antwort
Weitere Antworten (1)
Han Geerligs
am 12 Nov. 2018
0 Stimmen
Kategorien
Mehr zu Collect Coverage for Models finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!