Main Content

remove

Class: sltest.testmanager.TestSuite
Namespace: sltest.testmanager

Remove test suite

Syntax

remove(ts)

Description

remove(ts) removes the test suite. The test suite object is empty after a call to this function.

Input Arguments

expand all

Test suite that you want to remove, specified as an sltest.testmanager.TestSuite object.

Examples

expand all

% Create test file
tf = sltest.testmanager.TestFile('C:\MATLAB\test_file.mldatx');

% Create test suite
ts = sltest.testmanager.TestSuite(tf,'My Test Suite');

% Remove the test suite
remove(ts);

Version History

Introduced in R2015b