GetTestResultFiles
Gets an array with all test results in the current collection in the order in which they are added.
Compatibility
Available as of IDEA version 9.1.1
Syntax
GetTestResultFiles()
Return Value
An array returning all test results in the current collection.
Remark
The function returns an empty array if the collection is empty.
Example
Sub Main
Dim values As Variant
values = SmartContext.TestResultFiles.GetTestResultFiles
'Get a reference to the first array entry.
Dim w As Object
Set w = values(0)
End Sub