% 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,'baseline','Baseline API Test Case');
% Assign the system under test to test case
setProperty(tc,'Model','sldemo_absbrake');
% Open Test Manager to view and edit test case
sltest.testmanager.view;