Mercurial > repos > public > sbplib
view runtestsAll.m @ 407:e1db62d14835 feature/SBPInTimeGauss
Fixed bug with initial data and made gauss the default type
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Thu, 02 Feb 2017 19:30:16 +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