Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoRossignoli committed Nov 20, 2021
1 parent 820f1e8 commit d9dce9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public DataCollectionResult(Collection<AttachmentSet> attachments, Collection<In
public Collection<AttachmentSet> Attachments { get; }

/// <summary>
/// Get list of attachments processors
/// Get the list of the invoked data collectors.
/// </summary>
public Collection<InvokedDataCollector> InvokedDataCollectors { get; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public TestRunCompleteEventArgs(ITestRunStatistics stats, bool isCanceled, bool
this.IsAborted = isAborted;
this.Error = error;
this.AttachmentSets = attachmentSets ?? new Collection<AttachmentSet>(); // Ensuring attachmentSets are not null, so that new attachmentSets can be combined whenever required.
this.InvokedDataCollectors = invokedDataCollectors ?? new Collection<InvokedDataCollector>(); // Ensuring run data collectors are not null.
this.InvokedDataCollectors = invokedDataCollectors ?? new Collection<InvokedDataCollector>(); // Ensuring that invoked data collectors are not null.
this.ElapsedTimeInRunningTests = elapsedTime;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class TestRunAttachmentsProcessingPayload
public IEnumerable<AttachmentSet> Attachments { get; set; }

/// <summary>
/// Collection of data collectors.
/// Collection of the invoked data collectors.
/// </summary>
[DataMember]
public IEnumerable<InvokedDataCollector> InvokedDataCollectors { get; set; }
Expand Down

0 comments on commit d9dce9c

Please sign in to comment.