How can I test a long function in Matlab?

4 ビュー (過去 30 日間)
Gabriela Garaizabal Etxeberria
Gabriela Garaizabal Etxeberria 2021 年 4 月 8 日
コメント済み: Jan 2021 年 4 月 13 日
Hello community,
I have to test certain functions and some of them are very long, how can I generate a test that verifies it?
Thank you so much,
Gabriela

採用された回答

Jan
Jan 2021 年 4 月 8 日
You test them the same way as you test short functions:
  • Provide a set with specific input data and compare the results with known outputs
  • Check if the output is very sensitive to a tiny variation of the inputs. If so, the function is an expensive random number generator.
  • Call the function with irregulare values and check, if it throws error messages
  • Check for NaN, +/-Inf, empty input, wrong file names, cell arrays instead of matrices etc.
Because it might be really hard to obtain some valid output data without using the original function, a validation of code usually requires to split the code to smaller functions, which can be tested independently. If the code is e.g. an integrator, you could compare the results with other integrators.
The base of unit-testing is to split the functions into units, whose output can be checked with controllable methods.
  3 件のコメント
Gabriela Garaizabal Etxeberria
Gabriela Garaizabal Etxeberria 2021 年 4 月 12 日
And, another doubt:
I have a function that collects some parameters of an interface and whose result is in an Excel. How can I test that Excel is generated correctly?
Hear is the code that I have started:
classdef Test1 < matlab.unittest.TestCase
properties
end
methods (Test)
function graphicsTest(testCase)
actSolution=graphics(2,0,700,320);
% expSolution=?
% testCase.verifyEqual(?)
end
end
end
Jan
Jan 2021 年 4 月 13 日
I'm not sure, what you want to test here.

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

その他の回答 (1 件)

John D'Errico
John D'Errico 2021 年 4 月 12 日
Don't test your long function. Because you should be writing SHORT functions. Then you can test each piece, verify it works as designed. And only then put it all together.

カテゴリ

Help Center および File ExchangeMATLAB Report Generator についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by