Files
imdd_silas/Tests
Silas Oettinghaus ef0a74cb7f work on MPI
2026-07-13 15:25:45 +02:00
..
2026-04-23 16:16:58 +02:00
2026-04-23 16:16:58 +02:00
2026-07-13 15:25:45 +02:00

Tests

This folder is built around matlab.unittest.

Primary entrypoint:

results = run_all_tests();
results = run_all_tests("profile","full");
results = run_all_tests("profile","placeholder");

Profiles:

  • fast: implemented fast tests only
  • full: implemented non-hardware tests
  • unit: implemented unit tests
  • hardware: hardware-tagged tests
  • placeholder: explicit assumeFail placeholders
  • all: everything discovered under Tests

To generate placeholders for untested classes:

generateTests();

New tests should inherit from IMDDTestCase and use TestTags so they can participate in the profiles above.