Relative/ Absolute path in Baseline Text
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Saurabh Dhakate
il 16 Lug 2024
Commentato: Saurabh Dhakate
il 17 Lug 2024
Is it possible to use relative path instead of absolute when adding baseline criteria?
0 Commenti
Risposta accettata
Gayatri
il 16 Lug 2024
Hi Saurabh,
One way to handle this is by leveraging the ‘preLoadFcn’ property of your test cases.
1. Create a Preload Function: Write a function that calculates the path to your MAT file relative to the common base directory and sets this path in a way that your test can use it.
function preloadFunction(testCase)
% Example of setting a relative path for a MAT file
basePath = fileparts(which('yourTestFile.m'));
relativePathToMat = fullfile(basePath, 'relative', 'path', 'to', 'yourMatFile.mat');
testCase.TestData.matFilePath = relativePathToMat;
end
2. Configure Your Test to Use the Preload Function: In the Test Manager or your test script, set the ‘preLoadFcn’ property of your test case to point to the preload function you just created.
Please refer the below documentation for ‘preLoadFcn’ property: https://www.mathworks.com/help/simulink/ug/model-callbacks.html
I Hope it helps!
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Testing Frameworks in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!