run
Class: sltest.testmanager.TestSuite
Namespace: sltest.testmanager
Run test cases in test suite
Syntax
resultObj = run(ts)
resultObj = run(ts,Name,Value)
Description
runs the enabled test cases in the test suite.resultObj
= run(ts
)
uses additional options specified by one or more name-value arguments.resultObj
= run(ts
,Name,Value
)
Input Arguments
Test suite with the test cases you want to run, specified as
an sltest.testmanager.TestSuite
object.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Example: Parallel=true,SimulationMode="Accelerator"
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: "Parallel",true,"SimulationMode","Accelerator"
Whether to run tests with Parallel Computing Toolbox™ or MATLAB®
Parallel Server™, specified as either false
or
true
. Requires Parallel Computing Toolbox or MATLAB
Parallel Server license, respectively.
Example: run(ts,"Parallel",true)
Data Types: logical
Simulation mode for running the test suite in the Test Manager,
specified as "Normal"
,
"Accelerator"
, "Rapid
Accelerator"
, "Software-in-the-Loop"
,
or "Processor-in-the-Loop"
. When you specify this
name-value argument, the setting overrides the simulation mode set in
the Test Manager. You do not need to update the test parameters or
settings when running the test suite in the new mode.
The SimulationMode
value
Applies to both simulations in an equivalence test.
Applies to all iterations in a test case.
Applies to multirelease tests.
Does not apply to baseline captures.
Does not apply to real-time tests or MATLAB-based Simulink® tests.
If you set SimulationMode
to
"Software-in-the-Loop"
or
"Processor-in-the-Loop"
, and select
Override model blocks in SIL/PIL mode to normal
mode in the System Under Test
section of the Test Manager, the Test Manager uses the
SimulationMode
value to run the test.
Example: "SimulationMode","Accelerator"
Specifies test tags for execution. For more information, see Tags.
Example: run(ts,"Tags",["safety"])
Example: run(ts,"Tags",["safety","regression"])
Data Types: cell
| char
| string
Output Arguments
Test results, returned as a sltest.testmanager.ResultSet
results set object.
Examples
Open the model for this example.
openExample('sldemo_autotrans');
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,"simulation","Simulation 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_autotrans");
Run the test suite and return the results data.
ro = run(ts);
Open the model for this example.
openExample('sldemo_autotrans');
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,"simulation","Simulation 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_autotrans");
Run the test suite with Parallel Computing Toolbox and return the results data.
ro = run(ts,"Parallel",true);
Version History
Introduced in R2015bThe SimulationMode
property overrides the simulation mode set
in the Test Manager. Use this property to run a test using a different mode without
having to change any test parameters or
settings.
See Also
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.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- 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)