run
Class: sltest.testmanager.TestCase
Package: sltest.testmanager
Run test case
Syntax
resultObj = run(tc)
resultObj = run(tc,"Parallel",setting)
Description
runs the test case.resultObj
= run(tc
)
runs test case with or without Parallel Computing Toolbox™ or MATLAB®
Parallel Server™.resultObj
= run(tc
,"Parallel",setting
)
Input Arguments
tc
— Test case
sltest.testmanager.TestCase
object
Test case you want to run, specified as an sltest.testmanager.TestCase
object.
setting
— Whether to run with parallel computing
false
(default) | true
Whether to run the test case 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(tc,"Parallel",true)
Data Types: logical
Output Arguments
resultObj
— Results set object
object
Test results, returned as a results set object, sltest.testmanager.ResultSet
.
Examples
Run a Test Case
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 case and return the results data.
ro = run(tc);
Run the Test Case 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 case with Parallel Computing Toolbox and return the results data.
ro = run(tc,"Parallel",true);
Version History
Introduced in R2015b
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.
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)