saveToFile

Класс: sltest.testmanager.TestFile
Пакет: sltest.testmanager

Сохраните тестовый файл

Синтаксис

saveToFile(tf)
saveToFile(tf,filePath)

Описание

saveToFile(tf) сохраняет изменения в тестовом файле.

saveToFile(tf,filePath) сохраняет тестовый файл в заданный путь к файлу.

Входные параметры

развернуть все

Тестовый файл в виде sltest.testmanager.TestFile объект.

Путь к файлу и имя, чтобы сохранить тестовый файл в в виде вектора символов.

Пример: 'C:\MATLAB\New Test File.mldatx'

Примеры

развернуть все

% Create the test file, test suite, and test case structure
tf = sltest.testmanager.TestFile('C:\MATLAB\My Test File.mldatx');
ts = createTestSuite(tf,'My 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');

% Save the test file
saveToFile(tf);

% Save test file object as another test file
saveToFile(tf,'C:\MATLAB\New Test File.mldatx');
Введенный в R2015b
Для просмотра документации необходимо авторизоваться на сайте