Which Unit Test tool is good for image processing code ?

4 次查看(过去 30 天)
Which Unit Test tool is good for image processing code ?

回答(1 个)

Jan
Jan 2017-5-15
The answer does not depend on the field you are working in, so it does not matter if image processing is concerned. I'd rely on Matlab's builtin unit testing framework, see https://www.mathworks.com/help/matlab/script-based-unit-tests.html.
I create a unit test function manually for all of my functions to support older Matlab versions, which did not have unit test tools. This is less smart, but ways better then omitting an exhaustive unit testing.
Summary: Choosing the "wrong" tool is not the problem, but only to omit the testing or test not exhaustively.
  1 个评论
Andy Campbell
Andy Campbell 2017-5-15
Nice answer Jan. One strategy you might consider using is writing the unit tests that need to test older releases using the script-based testing style. When you do this, you can always jsut run the script in an older release to execute the needed code, but then in releases that have the test framework you can call runtests on it galore. You can run it in parallel, combine it with other function or class based tests and so on.
When you write the code as a script based test you don't get the benefit of the qualification api , but you don't have that functionality anyway in older pre-test framework releases.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Write Unit Tests 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by