-
Notifications
You must be signed in to change notification settings - Fork 325
/
Copy pathTestRunCompletePayload.cs
35 lines (28 loc) · 1.09 KB
/
TestRunCompletePayload.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Generic;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;
namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel;
/// <summary>
/// The test run complete payload.
/// </summary>
public class TestRunCompletePayload
{
/// <summary>
/// Gets or sets the test run complete args.
/// </summary>
public TestRunCompleteEventArgs? TestRunCompleteArgs { get; set; }
/// <summary>
/// Gets or sets the last run tests.
/// </summary>
public TestRunChangedEventArgs? LastRunTests { get; set; }
/// <summary>
/// Gets or sets the run attachments.
/// </summary>
public ICollection<AttachmentSet>? RunAttachments { get; set; }
/// <summary>
/// Gets or sets the executor uris that were used to run the tests.
/// </summary>
public ICollection<string>? ExecutorUris { get; set; }
}