run
Class: sltest.testmanager.TestFile
Package: sltest.testmanager
Run test cases in test file
Syntax
resultObj = run(tf)
resultObj = run(tf,Name,Value)
Description
runs the enabled test cases in the test file.resultObj
= run(tf
)
uses additional options specified by one or more name-value arguments.resultObj
= run(tf
,Name,Value
)
Input Arguments
tf
— Test file
sltest.testmanager.TestFile
object
Test file with the test cases you want to run, specified as
an sltest.testmanager.TestFile
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,Tags=["safety","regression"]
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: "Parallel",true,"Tags",["safety","regression"]
Parallel
— Whether to run with parallel computing
false
(default) | true
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(tf,"Parallel",true)
Data Types: logical
Tags
— Run only tests with specified tags
string array | cell array of character vectors
Specifies test tags for execution. For more information, see Tags.
Example: run(tf,"Tags",["safety"])
Example: run(tf,"Tags",["safety","regression"])
Data Types: cell
| char
| string
Output Arguments
resultObj
— Results set object
sltest.testmanager.ResultSet
object
Test results, returned as a results set object, sltest.testmanager.ResultSet
.
Examples
Run a Test File
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 file and return the results data.
ro = run(tf);
Run the Test File with Parallel Computing Toolbox
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 file with Parallel Computing Toolbox and return the results data.
ro = run(tf,"Parallel",true);
Version History
Introduced in R2015b
See Also
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
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)