Mercurial > repos > public > sbplib
annotate runtestsPackage.m @ 985:ad6de007e7f6 feature/timesteppers
Convert Rungekutta4SecondOrder to take F(t,v,v_t) instead of matrices
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 08 Jan 2019 12:34:29 +0100 |
parents | 276dcccf6155 |
children | 3230e4cbdbb4 |
rev | line source |
---|---|
152
276dcccf6155
Added function to run all tests in a package.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
1 function res = runtestsPackage(pkgName) |
276dcccf6155
Added function to run all tests in a package.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
2 ts = matlab.unittest.TestSuite.fromPackage(pkgName); |
276dcccf6155
Added function to run all tests in a package.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
3 res = ts.run(); |
276dcccf6155
Added function to run all tests in a package.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
4 end |