Mercurial > repos > public > sbplib
annotate runtestsPackage.m @ 213:15d604e4e1a1 feature/beams
Removed the data paramter from boundary_condition prototype.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 22 Jun 2016 14:40:23 +0200 |
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 |