Mercurial > repos > public > sbplib
view runtestsAll.m @ 406:9fd9b1bea3d2 feature/SBPInTimeGauss
Added D1Gauss to SBPInTime
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Thu, 02 Feb 2017 17:18:51 +0100 |
parents | 344bde2f9d9b |
children | cd571e8ec1fd |
line wrap: on
line source
function res = runtestsAll() l = dir(); dirNames = {l([l.isdir]).name}; packages = {}; for i = 1:length(dirNames) if dirNames{i}(1) == '+' packages{end+1} = dirNames{i}(2:end); end end rootSuite = matlab.unittest.TestSuite.fromFolder(pwd); packageSuites = {}; for i = 1:length(packages) packageSuites{i} = matlab.unittest.TestSuite.fromPackage(packages{i}); end ts = [rootSuite, packageSuites{:}]; res = ts.run(); end