Files
imdd_silas/Tests
2026-03-25 09:33:33 +01: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.