- 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?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 15 de Sept. de 2025
Respondida: MathWorks Support Team
el 24 de Oct. de 2025 a las 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?
Respuesta aceptada
MathWorks Support Team
el 15 de Sept. de 2025
To ensure test case independence, here are some recommended guidelines to follow when designing your test cases:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Author Tests Using C/C++ xUnit API en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!