How to save results of a Class-Based Unittest without ToFile Plugin?

4 ビュー (過去 30 日間)
Shar
Shar 2016 年 11 月 23 日
コメント済み: Shar 2016 年 11 月 29 日
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 件のコメント
Sean de Wolski
Sean de Wolski 2016 年 11 月 23 日
Can you upgrade to a newer release that has ToFile?
Shar
Shar 2016 年 11 月 29 日
No :)

サインインしてコメントする。

採用された回答

Ganesh Hegade
Ganesh Hegade 2016 年 11 月 23 日
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.
  1 件のコメント
Shar
Shar 2016 年 11 月 23 日
classdef Test_MainFunction < matlab.unittest.TestCase
methods (Test)
function test_Caseone(testCase)
Heat_TestFunction('Caseone_Test.csv'testCase);
end
function test_Casetwo(testCase)
Heat_TestFunction('Casetwo_Tesst.csv',testCase);
end
end
end
This is my only Test Class, I want to save a .txt file for each of these tests like a report or something.

サインインしてコメントする。

その他の回答 (1 件)

Andy Campbell
Andy Campbell 2016 年 11 月 23 日
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!

カテゴリ

Help Center および File ExchangeTesting Frameworks についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by