Main Content

getCustomCriteriaResult

Class: sltest.testmanager.TestIterationResult
Namespace: sltest.testmanager

Get custom criteria results from test iteration

Syntax

ccResult = getCustomCriteriaResult(tiResult)

Description

ccResult = getCustomCriteriaResult(tiResult) creates the custom criteria result object ccResult from test iteration result tiResult.

Input Arguments

expand all

Test iteration result to get the custom criteria result from, specified as a TestIterationResult 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 iteration result from the test case result tcResult.

iterResult = getIterationResults(tcResult);

Get the custom criteria from the test case result tcResult.

ccResult = getCustomCriteriaResult(iterResult);

Version History

Introduced in R2016b