- If possible, remove dependencies between test cases, such as global variables.
- If global variables are present:
- You should explicitly set their values as part of your test inputs or within test setup routines. By default, these values are not set, so you must initialize them manually. This process is outlined in the following documentation: Set Global Variables Before Test in Polyspace Platform User Interface and Reset Afterwards.
- You can also optionally use test teardown to reset global or static variables as needed.
- If you require a specific sequence of steps, use test steps within a test case rather than relying on Test Suite execution order, as specified in Write Multi-Step Tests in Polyspace Platform User Interface.
- For testing with generated code, do not modify the generated code, as the test itself should manage independence.
How should I maintain independent test cases in MATLAB Polyspace Test?
2 ビュー (過去 30 日間)
古いコメントを表示
MathWorks Support Team
2025 年 9 月 15 日
回答済み: MathWorks Support Team
2025 年 10 月 24 日 14:00
I am trying to ensure that my testing results do not rely on the execution order of my test cases. What are some best practices for independent testing in MATLAB Polyspace Test?
採用された回答
MathWorks Support Team
2025 年 9 月 15 日
To ensure test case independence, here are some recommended guidelines to follow when designing your test cases:
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Author Tests Using C/C++ xUnit API についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!