|
micro-test-plus 4.1.0
µTest++ Testing Framework
|
Test cases are named sequences of checks. More...
Classes | |
| class | micro_os_plus::micro_test_plus::subtest |
| A named, runnable test case that lives inside a suite. More... | |
Each test case is defined by calling suite::test() with a descriptive name and a callable object (typically a lambda accepting a subtest& reference), along with any optional arguments required for the test.
Test cases allow related checks to be organised together within the same environment, improving clarity and maintainability. Any number of test cases may be defined, each focusing on a specific aspect of the code under test.
By grouping checks in this way, developers can identify which functionality is being verified and interpret results in the context of overall software quality.