Custom name for simulink test coverage report
Hello,
When I run my simulink test file and generate test report like in the below code, a folder is created for coverage report and it has a html file with random name like ‘tp576c882a_0284_4a8b_a3b1_8ad156fb7814.html’. (the test report has a link to this coverage report file.)
…
resultNormal = testFile.run;
testReportName = [‘Report_’, blockName, ‘.pdf’];
testReportPath = fullfile(pwd, testReportName);
sltest.testmanager.report(resultNormal, testReportPath, ‘Title’, [‘Test Report for ‘, blockName, ‘ in MIL mode.’], ‘IncludeMLVersion’, true, ‘IncludeComparisonSignalPlots’, true, ‘IncludeErrorMessages’, true, ‘IncludeTestResults’, 0, ‘IncludeCoverageResult’, true,’IncludeMATLABFigures’, true);
Everytime I run this script, a new html file name is created and so I have to replace the old file eveytime in my git. Is there a way to set a fixed name to this html file ?
Thanks.Hello,
When I run my simulink test file and generate test report like in the below code, a folder is created for coverage report and it has a html file with random name like ‘tp576c882a_0284_4a8b_a3b1_8ad156fb7814.html’. (the test report has a link to this coverage report file.)
…
resultNormal = testFile.run;
testReportName = [‘Report_’, blockName, ‘.pdf’];
testReportPath = fullfile(pwd, testReportName);
sltest.testmanager.report(resultNormal, testReportPath, ‘Title’, [‘Test Report for ‘, blockName, ‘ in MIL mode.’], ‘IncludeMLVersion’, true, ‘IncludeComparisonSignalPlots’, true, ‘IncludeErrorMessages’, true, ‘IncludeTestResults’, 0, ‘IncludeCoverageResult’, true,’IncludeMATLABFigures’, true);
Everytime I run this script, a new html file name is created and so I have to replace the old file eveytime in my git. Is there a way to set a fixed name to this html file ?
Thanks. Hello,
When I run my simulink test file and generate test report like in the below code, a folder is created for coverage report and it has a html file with random name like ‘tp576c882a_0284_4a8b_a3b1_8ad156fb7814.html’. (the test report has a link to this coverage report file.)
…
resultNormal = testFile.run;
testReportName = [‘Report_’, blockName, ‘.pdf’];
testReportPath = fullfile(pwd, testReportName);
sltest.testmanager.report(resultNormal, testReportPath, ‘Title’, [‘Test Report for ‘, blockName, ‘ in MIL mode.’], ‘IncludeMLVersion’, true, ‘IncludeComparisonSignalPlots’, true, ‘IncludeErrorMessages’, true, ‘IncludeTestResults’, 0, ‘IncludeCoverageResult’, true,’IncludeMATLABFigures’, true);
Everytime I run this script, a new html file name is created and so I have to replace the old file eveytime in my git. Is there a way to set a fixed name to this html file ?
Thanks. simulink test, coverage report MATLAB Answers — New Questions