Mercurial > repos > public > sbplib
annotate runtestsPackage.m @ 1037:2d7ba44340d0 feature/burgers1d
Pass scheme specific parameters as cell array. This will enabale constructDiffOps to be more general. In addition, allow for schemes returning function handles as diffOps, which is currently how non-linear schemes such as Burgers1d are implemented.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 18 Jan 2019 09:02:02 +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 |