annotate runtestsPackage.m @ 1023:defc9d0cc1f2 feature/advectionRV

Remove incorrect assertion of the number of BC:s
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 07 Jan 2019 12:06:49 +0100
parents 276dcccf6155
children 3230e4cbdbb4
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)
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