Filter löschen
Filter löschen

Which Unit Test tool is good for image processing code ?

4 Ansichten (letzte 30 Tage)
Dharm Singh
Dharm Singh am 15 Mai 2017
Kommentiert: Andy Campbell am 15 Mai 2017
Which Unit Test tool is good for image processing code ?

Antworten (1)

Jan
Jan am 15 Mai 2017
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 Kommentar
Andy Campbell
Andy Campbell am 15 Mai 2017
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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Write Unit Tests 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!

Translated by