Represents a list of test results that can be accessed by index. Provides methods to search, sort, and manipulate test results.

Namespace: SSIS.Test.Collections
Assembly: SSIS.Test (in SSIS.Test.dll) Version: 3.0.0.236 (3.0.0.236)

Syntax

C#
public class TestResultCollection<T> : List<T>
where T : TestResult
Visual Basic
Public Class TestResultCollection(Of T As TestResult) _
	Inherits List(Of T)
Visual C++
generic<typename T>
where T : TestResult
public ref class TestResultCollection : public List<T>

Type Parameters

T
Type of elements in the list. It can be either UnitTestResult or LiveTestResult.

Inheritance Hierarchy

System..::..Object
  System.Collections.Generic..::..List<(Of <(<'T>)>)>
    SSIS.Test.Collections..::..TestResultCollection<(Of <(<'T>)>)>

See Also