- TestReportPlugin: https://mathworks.com/help/matlab/ref/matlab.unittest.plugins.testreportplugin-class.html
- Various ways to run MATLAB tests: https://mathworks.com/help/matlab-test/ug/run-matlab-tests.html
Is there any autosave option for tests results in test manager?
53 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Iñaki Eizaguirre
il 13 Nov 2024 alle 8:12
Risposto: Guilherme Costa Nascimento
il 14 Nov 2024 alle 16:40
I just left my computer executing tests cases with test manager during the entire night and at the morning I see that's been turned off. Completely sure that the whole bunch of tests were executed. Therefore, is there any available option for autosaving results?
0 Commenti
Risposte (2)
Madheswaran
il 13 Nov 2024 alle 8:58
Modificato: Madheswaran
il 13 Nov 2024 alle 9:30
Starting from MATLAB R2024b, you can view test and coverage results for the five most recent previous runs. I think this would help you to view most recent run. To view a previous run, click the button to the left of the Run button and, under Previous Runs, select a run.
For more information, refer to the following MathWorks documentation page:
With my current understanding, there are no autosave option in the MATLAB Test Manager as of now. However if you would like to save the test report without any manual intervention after every test runs, you can achieve that with the following script:
import matlab.unittest.TestSuite;
import matlab.unittest.TestRunner;
import matlab.unittest.plugins.TestReportPlugin;
% Create test suite from tests directory
suite = TestSuite.fromFolder('tests_folder');
% Create runner and add HTML report plugin
runner = TestRunner.withTextOutput;
runner.addPlugin(TestReportPlugin.producingHTML('TestReport.html'));
% Run tests
runner.run(suite);
The above code creates a test suite from the test files in 'tests_folder' and runs the test suite with 'HTML report plugin'. This would generate and save the report in 'TestReport.html' file.
For more information, refer to the following MathWorks documentation on:
Hope this helps!
0 Commenti
Guilherme Costa Nascimento
il 14 Nov 2024 alle 16:40
Assuming you are using Simulink Test:
If you need to save the results themselves rather than a report, use sltest.testmanager.exportResults function.
To do it incrementally, try something like:
testFile = sltest.testmanager.load('myTests.mldatx');
testSuites = getTestSuites(testFile);
for ts = testSuites
res = run(ts);
sltest.testmanager.exportResults(res, [ts.Name ' results.mldatx']);
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Results, Reporting, and Test File Management in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!