Mercurial > repos > public > sbplib
annotate runtestsPackage.m @ 1198:2924b3a9b921 feature/d2_compatible
Add OpSet for fully compatible D2Variable, created from regular D2Variable by replacing d1 by first row of D1. Formal reduction by one order of accuracy at the boundary point.
author | Martin Almquist <malmquist@stanford.edu> |
---|---|
date | Fri, 16 Aug 2019 14:30:28 -0700 |
parents | 3230e4cbdbb4 |
children |
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) |
1107
3230e4cbdbb4
Add parameter in runtestsAll() and runtestsPackage() so that they include tests in subpackages
Jonatan Werpers <jonatan@werpers.com>
parents:
152
diff
changeset
|
2 ts = matlab.unittest.TestSuite.fromPackage(pkgName, 'IncludingSubpackages', true); |
152
276dcccf6155
Added function to run all tests in a package.
Jonatan Werpers <jonatan@werpers.com>
parents:
diff
changeset
|
3 res = ts.run(); |
1107
3230e4cbdbb4
Add parameter in runtestsAll() and runtestsPackage() so that they include tests in subpackages
Jonatan Werpers <jonatan@werpers.com>
parents:
152
diff
changeset
|
4 end |