c++ - What does "0 skipped, 0 blacklisted" mean in the Qt Unit Test framework? -
when run qt unit test project, ends summary looks this:
totals: 28 passed, 1 failed, 0 skipped, 0 blacklisted
the "passed" , "failed" categories obvious, meaning of "skipped" , "blacklisted"?
under conditions test framework skip test? how different blacklisting it?
my qt version qt 5.4.1.
test skipped, if qskip() called test function.
qtestlib
looks file called blacklist
in test directory , parses if found. file contains simple ini style list of functions blacklist. details see qtestblacklist.cpp.
Comments
Post a Comment