Main Content

getCustomCriteriaResult

Class: sltest.testmanager.TestCaseResult
Namespace: sltest.testmanager

Get custom criteria results from test case result

Syntax

ccResult = getCustomCriteriaResult(tcResult)

Description

ccResult = getCustomCriteriaResult(tcResult) creates the custom criteria result object ccResult from test case result tcResult.

Input Arguments

expand all

Test case result to get the custom criteria result from, specified as a TestCaseResult object.

Output Arguments

expand all

Custom criteria result of the test case result, returned as an CustomCriteriaResult object.

Examples

expand all

Create a test case result object from the test case result set tcResultSet.

tcResult = getTestCaseResults(tcResultSet);

Get the custom criteria from the test case result tcResult.

ccResult = getCustomCriteriaResult(tcResult);

Version History

Introduced in R2016b