How to save results of a Class-Based Unittest without ToFile Plugin?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shar
am 23 Nov. 2016
Kommentiert: Shar
am 29 Nov. 2016
Hi, Is there any replacement for
matlab.unittest.plugins.ToFile
class? I have Matlab 2013 and my Matlab does not have this Plugin. This ToFile class creates an output stream that writes text output to a UTF-8 encoded file.
Thanks, Arsalan
2 Kommentare
Akzeptierte Antwort
Ganesh Hegade
am 23 Nov. 2016
Create a test class with test cases
classdef Test_Class < matlab.unittest.TestCase
Then import the the test classes to a suite. If you have created test classes in a folder you can import all the test cases to Testsuite using below command.
suite = matlab.unittest.TestSuite.fromFolder(folder)
Then Run the suite to get the test results.
uniTestresult = run(suite);
uniTestresult will give you the information about the test carried.
Weitere Antworten (1)
Andy Campbell
am 23 Nov. 2016
As Sean alludes to in his comment, I think the best exxperience will be if you are able to upgrade to a newer release that has ToFile (it was introduced in R2014a). There are certainly many new capabilities and features of the test framework in newer releases.
However, until then, you may have some luck with the -logfile MATLAB startup option. Using this all of the output sent to the command window will also go to this logfile.
Good luck!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Testing Frameworks 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!