getOutputRuns
Class: sltest.testmanager.TestCaseResult
Namespace: sltest.testmanager
Get test case simulation output results
Syntax
runArray = getOutputRuns(result)
Description
gets
the test case simulation output results that are direct children
of the test case results object.runArray
= getOutputRuns(result
)
Input Arguments
result
— Test case result
sltest.testmanager.TestCaseResult
object
Test case results to get simulation output results from, specified
as a sltest.testmanager.TestCaseResult
object.
Output Arguments
runArray
— Simulation output results
Simulink.sdi.Run
object
Test case simulation output results, returned as a Simulink.sdi.Run
object
array.
Examples
Get and Export Simulation Output From Test Case
% Open the model for this example openExample('sldemo_absbrake'); % Create the test file, test suite, and test case structure tf = sltest.testmanager.TestFile('API Test File'); ts = createTestSuite(tf,'API Test Suite'); tc = createTestCase(ts,'baseline','Baseline API Test Case'); % Remove the default test suite tsDel = getTestSuiteByName(tf,'New Test Suite 1'); remove(tsDel); % Assign the system under test to the test case setProperty(tc,'Model','sldemo_absbrake'); % Capture the baseline criteria baseline = captureBaselineCriteria(tc,'baseline_API.mat',true); % Test a new model parameter by overriding it in the test case % parameter set ps = addParameterSet(tc,'Name','API Parameter Set'); po = addParameterOverride(ps,'m',55); % Set the baseline criteria tolerance for one signal sc = getSignalCriteria(baseline); sc(1).AbsTol = 9; % Run the test case and return an object with results data resultsObj = run(tc); % Get test case result tcr = getTestCaseResults(resultsObj); % Get the Sim Output run dataset runDataset = getOutputRuns(tcr); % Export the Sim Output run dataset, which is a % Simulink.sdi.run object dataset = export(runDataset);
Version History
Introduced in R2015a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)