ClassRunResultsCollection
Represents the collection of run results exposing filtering methods.
Definition
Namespace:ArtOfTest.WebAii.Design.Execution
Assembly:ArtOfTest.WebAii.Design.dll
Syntax:
public class RunResultsCollection : FilteredCollection<RunResult>, IList<RunResult>, ICollection<RunResult>, IList, ICollection, IReadOnlyList<RunResult>, IReadOnlyCollection<RunResult>, IEnumerable<RunResult>, IEnumerable
Inheritance: objectList<RunResult>FilteredCollection<RunResult>RunResultsCollection
Implements:
Inherited Members
Constructors
RunResultsCollection(List<RunResult>)
Initializes the run results collection with a list of run results.
Methods
GetRunResultsBetween(DateTime, DateTime)
Retrieves the list of run results started and completed between the start and end time arguments.
Declaration
public List<RunResult> GetRunResultsBetween(DateTime start, DateTime end)
Parameters
start
The start time argument, result start time instance should be later.
end
The end time argument, result end time instance should be earlier.
Returns
The list of run results started and completed between the start and end time arguments.
GetRunResultsStartedBetween(DateTime, DateTime)
Retrieves the list of run results started between the start and end time arguments.
Declaration
public List<RunResult> GetRunResultsStartedBetween(DateTime start, DateTime end)
Parameters
start
The start time argument, result instance should be started later.
end
The end time argument, result instance should be started earlier.
Returns
The list of run results started between the start and end time arguments.