Skip to content

Commit

Permalink
Merging v1
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubch1 committed May 19, 2020
1 parent 7efc5c2 commit 8e88dea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public interface IVsTestConsoleWrapper2 : IVsTestConsoleWrapper
/// </summary>
/// <param name="attachments">List of attachements</param>
/// <param name="testSessionEventsHandler">EventHandler to receive session complete event</param>
void OnTestSessionEnd(IEnumerable<AttachmentSet> attachments, ITestSessionEventsHandler testSessionEventsHandler);
void FinalizeMultiTestRuns(IEnumerable<AttachmentSet> attachments, ITestSessionEventsHandler testSessionEventsHandler);
// void FinalizeTests(IEnumerable<AttachmentSet> attachments, ITestSessionEventsHandler testSessionEventsHandler);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ public void OnTestSessionEnd(IEnumerable<AttachmentSet> attachments, ITestSessio
this.EnsureInitialized();

this.requestSender.OnTestSessionEnd(attachments, testSessionEventsHandler);
this.requestSender.FinalizeSession(attachments, testSessionEventsHandler);
}

#endregion
Expand Down

0 comments on commit 8e88dea

Please sign in to comment.