annotate runtestsPackage.m @ 1329:7df63b17e078 feature/D2_boundary_opt

Add support for boundary optimized grids in DefCurvilinear, and add boundaryOptimizedCurvilinear for constructing a curvilinear grid with boundary optimized grid point placement.
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 14 Feb 2022 14:55:29 +0100
parents 3230e4cbdbb4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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