From c483f4ff3ab3095a8ee816b1d61333a5b8ac66b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Fri, 24 Jun 2022 12:18:43 +0200 Subject: [PATCH] Enable nullable on Public API --- .editorconfig | 4 + .../PublicAPI/PublicAPI.Shipped.txt | 2 +- .../RunSettings.cs | 2 +- .../PublicAPI/PublicAPI.Shipped.txt | 473 ++++---- .../PublicAPI/PublicAPI.Unshipped.txt | 1 + .../PublicAPI/net451/PublicAPI.Shipped.txt | 1 + .../PublicAPI/net451/PublicAPI.Unshipped.txt | 1 + .../PublicAPI/net6.0/PublicAPI.Shipped.txt | 1 + .../PublicAPI/net6.0/PublicAPI.Unshipped.txt | 1 + .../netstandard1.3/PublicAPI.Shipped.txt | 1 + .../netstandard1.3/PublicAPI.Unshipped.txt | 1 + .../netstandard2.0/PublicAPI.Shipped.txt | 1 + .../netstandard2.0/PublicAPI.Unshipped.txt | 1 + .../PublicAPI/net45/PublicAPI.Shipped.txt | 4 +- .../PublicAPI/net451/PublicAPI.Shipped.txt | 4 +- .../Tracing/EqtTrace.cs | 4 +- .../Adapter/Interfaces/IFrameworkHandle.cs | 2 +- .../Adapter/Interfaces/IRunSettings.cs | 2 +- .../Interfaces/ITestCaseFilterExpression.cs | 2 +- ...{ITestLog.cs => ITestExecutionRecorder.cs} | 0 .../Client/Events/TestRunCompleteEventArgs.cs | 2 +- .../Client/Interfaces/IDiscoveryRequest.cs | 8 +- .../Constants.cs | 2 +- .../PublicAPI/PublicAPI.Shipped.txt | 1075 +++++++++-------- .../PublicAPI/PublicAPI.Unshipped.txt | 2 +- .../PublicAPI/net/PublicAPI.Shipped.txt | 271 ++--- .../PublicAPI/net/PublicAPI.Unshipped.txt | 2 +- .../PublicAPI/net45/PublicAPI.Shipped.txt | 22 +- .../PublicAPI/net45/PublicAPI.Unshipped.txt | 2 +- .../PublicAPI/net451/PublicAPI.Shipped.txt | 22 +- .../PublicAPI/net451/PublicAPI.Unshipped.txt | 2 +- .../netcoreapp1.0/PublicAPI.Shipped.txt | 2 + .../netcoreapp1.0/PublicAPI.Unshipped.txt | 2 +- .../netcoreapp2.1/PublicAPI.Shipped.txt | 4 +- .../netcoreapp2.1/PublicAPI.Unshipped.txt | 2 +- .../netstandard1.0/PublicAPI.Shipped.txt | 4 +- .../netstandard1.0/PublicAPI.Unshipped.txt | 2 +- .../netstandard1.3/PublicAPI.Shipped.txt | 4 +- .../netstandard1.3/PublicAPI.Unshipped.txt | 2 +- .../netstandard2.0/PublicAPI.Shipped.txt | 4 +- .../netstandard2.0/PublicAPI.Unshipped.txt | 2 +- .../PublicAPI/uap10.0/PublicAPI.Shipped.txt | 3 +- .../PublicAPI/uap10.0/PublicAPI.Unshipped.txt | 2 +- .../RunSettings/RunConfiguration.cs | 11 +- .../Utilities/AssemblyHelper.cs | 4 +- .../PublicAPI/PublicAPI.Shipped.txt | 339 +++--- .../PublicAPI/PublicAPI.Unshipped.txt | 1 + .../PublicAPI/net451/PublicAPI.Shipped.txt | 1 + .../PublicAPI/net451/PublicAPI.Unshipped.txt | 1 + .../PublicAPI/net6.0/PublicAPI.Shipped.txt | 1 + .../PublicAPI/net6.0/PublicAPI.Unshipped.txt | 1 + .../netstandard2.0/PublicAPI.Shipped.txt | 1 + .../netstandard2.0/PublicAPI.Unshipped.txt | 1 + 53 files changed, 1173 insertions(+), 1139 deletions(-) rename src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/{ITestLog.cs => ITestExecutionRecorder.cs} (100%) diff --git a/.editorconfig b/.editorconfig index 7388677c1a..5dd8635fee 100644 --- a/.editorconfig +++ b/.editorconfig @@ -209,6 +209,10 @@ dotnet_diagnostic.CA1041.severity = warning # not default, increased severity to # CA1837: Use Environment.ProcessId instead of Process.GetCurrentProcess().Id dotnet_diagnostic.CA1837.severity = warning # not default, increased severity to ensure it is applied +# RS0041: Public members should not use oblivious types +# TODO: Move resx as internal OR use new resx generator (nullable aware) when available +dotnet_diagnostic.RS0041.severity = none # not default, decreased severity because of public resources (resx) not being nullable aware + #### C# Coding Conventions #### # var preferences diff --git a/src/Microsoft.TestPlatform.Common/PublicAPI/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.Common/PublicAPI/PublicAPI.Shipped.txt index 07e122238c..b3be22736e 100644 --- a/src/Microsoft.TestPlatform.Common/PublicAPI/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.Common/PublicAPI/PublicAPI.Shipped.txt @@ -112,7 +112,7 @@ Microsoft.VisualStudio.TestPlatform.Common.RequestData.ProtocolConfig.get -> Mic Microsoft.VisualStudio.TestPlatform.Common.RequestData.ProtocolConfig.set -> void Microsoft.VisualStudio.TestPlatform.Common.RequestData.RequestData() -> void Microsoft.VisualStudio.TestPlatform.Common.RunSettings -Microsoft.VisualStudio.TestPlatform.Common.RunSettings.GetSettings(string! settingsName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider? +Microsoft.VisualStudio.TestPlatform.Common.RunSettings.GetSettings(string? settingsName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider? Microsoft.VisualStudio.TestPlatform.Common.RunSettings.InitializeSettingsProviders(string! settings) -> void Microsoft.VisualStudio.TestPlatform.Common.RunSettings.LoadSettingsXml(string! settings) -> void Microsoft.VisualStudio.TestPlatform.Common.RunSettings.RunSettings() -> void diff --git a/src/Microsoft.TestPlatform.Common/RunSettings.cs b/src/Microsoft.TestPlatform.Common/RunSettings.cs index 8d9997db98..5568afa46d 100644 --- a/src/Microsoft.TestPlatform.Common/RunSettings.cs +++ b/src/Microsoft.TestPlatform.Common/RunSettings.cs @@ -54,7 +54,7 @@ public RunSettings() /// /// Name of the settings section to get. /// The settings provider for the settings or null if one was not found. - public ISettingsProvider? GetSettings(string settingsName) + public ISettingsProvider? GetSettings(string? settingsName) { if (settingsName.IsNullOrWhiteSpace()) { diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Shipped.txt index 1986a7af5d..4949d29836 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Shipped.txt @@ -1,125 +1,128 @@ -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AbortTestRun = "TestExecution.Abort" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AfterTestRunEnd = "DataCollection.AfterTestRunEnd" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AfterTestRunEndResult = "DataCollection.AfterTestRunEndResult" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AttachDebugger = "TestExecution.AttachDebugger" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AttachDebuggerCallback = "TestExecution.AttachDebuggerCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.BeforeTestRunStart = "DataCollection.BeforeTestRunStart" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.BeforeTestRunStartResult = "DataCollection.BeforeTestRunStartResult" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CancelDiscovery = "TestDiscovery.Cancel" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CancelTestRun = "TestExecution.Cancel" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CustomTestHostLaunch = "TestExecution.CustomTestHostLaunch" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CustomTestHostLaunchCallback = "TestExecution.CustomTestHostLaunchCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionMessage = "DataCollection.SendMessage" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestEnd = "DataCollection.TestEnd" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestEndResult = "DataCollection.TestEndResult" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestStart = "DataCollection.TestStart" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestStartAck = "DataCollection.TestStartAck" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DiscoveryComplete = "TestDiscovery.Completed" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DiscoveryInitialize = "TestDiscovery.Initialize" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebugger = "TestExecution.EditorAttachDebugger" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebuggerCallback = "TestExecution.EditorAttachDebuggerCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExecutionComplete = "TestExecution.Completed" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExecutionInitialize = "TestExecution.Initialize" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExtensionsInitialize = "Extensions.Initialize" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.GetTestRunnerProcessStartInfoForRunAll = "TestExecution.GetTestRunnerProcessStartInfoForRunAll" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.GetTestRunnerProcessStartInfoForRunSelected = "TestExecution.GetTestRunnerProcessStartInfoForRunSelected" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.LaunchAdapterProcessWithDebuggerAttached = "TestExecution.LaunchAdapterProcessWithDebuggerAttached" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.LaunchAdapterProcessWithDebuggerAttachedCallback = "TestExecution.LaunchAdapterProcessWithDebuggerAttachedCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ProtocolError = "ProtocolError" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionAbort = "TestSession.Abort" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionConnected = "TestSession.Connected" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionEnd = "TestSession.Terminate" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionStart = "TestSession.Start" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartDiscovery = "TestDiscovery.Start" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestExecutionWithSources = "TestExecution.StartWithSources" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestExecutionWithTests = "TestExecution.StartWithTests" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestSession = "TestSession.StartTestSession" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestSessionCallback = "TestSession.StartTestSessionCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StopTestSession = "TestSession.StopTestSession" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StopTestSessionCallback = "TestSession.StopTestSessionCallback" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestCasesFound = "TestDiscovery.TestFound" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestHostLaunched = "DataCollection.TestHostLaunched" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestMessage = "TestSession.Message" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAllSourcesWithDefaultHost = "TestExecution.RunAllWithDefaultHost" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingCancel = "TestRunAttachmentsProcessing.Cancel" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingComplete = "TestRunAttachmentsProcessing.Complete" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingProgress = "TestRunAttachmentsProcessing.Progress" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingStart = "TestRunAttachmentsProcessing.Start" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunSelectedTestCasesDefaultHost = "TestExecution.RunSelectedWithDefaultHost" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunStatsChange = "TestExecution.StatsChange" -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.VersionCheck = "ProtocolVersion" -> string +#nullable enable +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AbortTestRun = "TestExecution.Abort" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AfterTestRunEnd = "DataCollection.AfterTestRunEnd" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AfterTestRunEndResult = "DataCollection.AfterTestRunEndResult" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AttachDebugger = "TestExecution.AttachDebugger" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.AttachDebuggerCallback = "TestExecution.AttachDebuggerCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.BeforeTestRunStart = "DataCollection.BeforeTestRunStart" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.BeforeTestRunStartResult = "DataCollection.BeforeTestRunStartResult" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CancelDiscovery = "TestDiscovery.Cancel" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CancelTestRun = "TestExecution.Cancel" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CustomTestHostLaunch = "TestExecution.CustomTestHostLaunch" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.CustomTestHostLaunchCallback = "TestExecution.CustomTestHostLaunchCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionMessage = "DataCollection.SendMessage" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestEnd = "DataCollection.TestEnd" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestEndResult = "DataCollection.TestEndResult" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestStart = "DataCollection.TestStart" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DataCollectionTestStartAck = "DataCollection.TestStartAck" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DiscoveryComplete = "TestDiscovery.Completed" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.DiscoveryInitialize = "TestDiscovery.Initialize" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebugger = "TestExecution.EditorAttachDebugger" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebugger2 = "TestExecution.EditorAttachDebugger2" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebuggerCallback = "TestExecution.EditorAttachDebuggerCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExecutionComplete = "TestExecution.Completed" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExecutionInitialize = "TestExecution.Initialize" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ExtensionsInitialize = "Extensions.Initialize" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.GetTestRunnerProcessStartInfoForRunAll = "TestExecution.GetTestRunnerProcessStartInfoForRunAll" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.GetTestRunnerProcessStartInfoForRunSelected = "TestExecution.GetTestRunnerProcessStartInfoForRunSelected" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.LaunchAdapterProcessWithDebuggerAttached = "TestExecution.LaunchAdapterProcessWithDebuggerAttached" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.LaunchAdapterProcessWithDebuggerAttachedCallback = "TestExecution.LaunchAdapterProcessWithDebuggerAttachedCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.ProtocolError = "ProtocolError" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionAbort = "TestSession.Abort" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionConnected = "TestSession.Connected" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionEnd = "TestSession.Terminate" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.SessionStart = "TestSession.Start" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartDiscovery = "TestDiscovery.Start" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestExecutionWithSources = "TestExecution.StartWithSources" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestExecutionWithTests = "TestExecution.StartWithTests" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestSession = "TestSession.StartTestSession" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StartTestSessionCallback = "TestSession.StartTestSessionCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StopTestSession = "TestSession.StopTestSession" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.StopTestSessionCallback = "TestSession.StopTestSessionCallback" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestCasesFound = "TestDiscovery.TestFound" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestHostLaunched = "DataCollection.TestHostLaunched" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestMessage = "TestSession.Message" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAllSourcesWithDefaultHost = "TestExecution.RunAllWithDefaultHost" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingCancel = "TestRunAttachmentsProcessing.Cancel" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingComplete = "TestRunAttachmentsProcessing.Complete" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingProgress = "TestRunAttachmentsProcessing.Progress" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunAttachmentsProcessingStart = "TestRunAttachmentsProcessing.Start" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunSelectedTestCasesDefaultHost = "TestExecution.RunSelectedWithDefaultHost" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.TestRunStatsChange = "TestExecution.StatsChange" -> string! +const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.VersionCheck = "ProtocolVersion" -> string! const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketConstants.BufferSize = 16384 -> int Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.CommunicationEndpointFactory Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.CommunicationEndpointFactory.CommunicationEndpointFactory() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.CommunicationEndpointFactory.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole role) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.CommunicationEndpointFactory.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole role) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.Close() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.DataCollectionRequestSender() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.Dispose() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.InitializeCommunication() -> int -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendAfterTestRunEndAndGetResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler runEventsHandler, bool isCancelled) -> Microsoft.VisualStudio.TestPlatform.Common.DataCollection.AfterTestRunEndResult -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendBeforeTestRunStartAndGetResult(string settingsXml, System.Collections.Generic.IEnumerable sources, bool isTelemetryOptedIn, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler runEventsHandler) -> Microsoft.VisualStudio.TestPlatform.Common.DataCollection.BeforeTestRunStartResult -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendTestHostLaunched(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostLaunchedPayload testHostLaunchedPayload) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendAfterTestRunEndAndGetResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler? runEventsHandler, bool isCancelled) -> Microsoft.VisualStudio.TestPlatform.Common.DataCollection.AfterTestRunEndResult? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendBeforeTestRunStartAndGetResult(string? settingsXml, System.Collections.Generic.IEnumerable! sources, bool isTelemetryOptedIn, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler? runEventsHandler) -> Microsoft.VisualStudio.TestPlatform.Common.DataCollection.BeforeTestRunStartResult? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.SendTestHostLaunched(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostLaunchedPayload! testHostLaunchedPayload) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollection.DataCollectionRequestSender.WaitForRequestHandlerConnection(int clientConnectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.Close() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.DataCollectionTestCaseEventSender() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.DataCollectionTestCaseEventSender(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager communicationManager, Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer dataSerializer) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.DataCollectionTestCaseEventSender(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager! communicationManager, Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer! dataSerializer) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.InitializeCommunication(int port) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs e) -> System.Collections.ObjectModel.Collection -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs e) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs e) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs! e) -> System.Collections.ObjectModel.Collection? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs! e) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.SendTestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs! e) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.WaitForRequestSenderConnection(int connectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.HandleRawMessage(string rawMessage) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.TestInitializeEventsHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler requestHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string? message) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.HandleRawMessage(string! rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestInitializeEventsHandler.TestInitializeEventsHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler! requestHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleRawMessage(string rawMessage) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs lastChunkArgs, System.Collections.Generic.ICollection runContextAttachments, System.Collections.Generic.ICollection executorUris) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs testRunChangedArgs) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> int -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.TestRunEventsHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler requestHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo! attachDebuggerInfo) -> bool +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string? message) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleRawMessage(string! rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs! testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? lastChunkArgs, System.Collections.Generic.ICollection? runContextAttachments, System.Collections.Generic.ICollection? executorUris) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? testRunChangedArgs) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo? testProcessStartInfo) -> int +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.TestRunEventsHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler! requestHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException.CommunicationException() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException.CommunicationException(string message) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException.CommunicationException(string message, System.Exception inner) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException.CommunicationException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.CommunicationException.CommunicationException(string? message, System.Exception? inner) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.Channel.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.Channel.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.Connected.get -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.ConnectedEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.ConnectedEventArgs(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel channel) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.ConnectedEventArgs(System.Exception faultException) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.Fault.get -> System.Exception +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.ConnectedEventArgs(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel! channel) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.ConnectedEventArgs(System.Exception? faultException) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ConnectedEventArgs.Fault.get -> System.Exception? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.DisconnectedEventArgs Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.DisconnectedEventArgs.DisconnectedEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.DisconnectedEventArgs.Error.get -> System.Exception +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.DisconnectedEventArgs.Error.get -> System.Exception? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.DisconnectedEventArgs.Error.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.MessageReceived -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.NotifyDataAvailable() -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.Send(string data) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.MessageReceived -> System.EventHandler! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.NotifyDataAvailable() -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationChannel.Send(string! data) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Connected -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Disconnected -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Start(string endPoint) -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Connected -> System.EventHandler! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Disconnected -> System.EventHandler! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Start(string! endPoint) -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint.Stop() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndpointFactory -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndpointFactory.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole role) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndpointFactory.Create(Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole role) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationEndPoint! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.AcceptClientAsync() -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message message) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.HostServer(System.Net.IPEndPoint endpoint) -> System.Net.IPEndPoint -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveMessage() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveRawMessage() -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveRawMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string messageType) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string messageType, object payload) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string messageType, object payload, int version) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendRawMessage(string rawMessage) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SetupClientAsync(System.Net.IPEndPoint endpoint) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.AcceptClientAsync() -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message! message) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.HostServer(System.Net.IPEndPoint! endpoint) -> System.Net.IPEndPoint! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveMessage() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveRawMessage() -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.ReceiveRawMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string! messageType) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string! messageType, object! payload) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendMessage(string! messageType, object! payload, int version) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SendRawMessage(string! rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.SetupClientAsync(System.Net.IPEndPoint! endpoint) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.StopClient() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.StopServer() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager.WaitForClientConnection(int connectionTimeout) -> bool @@ -127,86 +130,100 @@ Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunica Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.Close() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.InitializeCommunication(int port) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs e) -> System.Collections.ObjectModel.Collection -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs e) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs e) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs! e) -> System.Collections.ObjectModel.Collection? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs! e) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.SendTestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs! e) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataCollectionTestCaseEventSender.WaitForRequestSenderConnection(int connectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.Clone(T obj) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.DeserializeMessage(string rawMessage) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message message) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializeMessage(string messageType) -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializePayload(string messageType, object payload) -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializePayload(string messageType, object payload, int version) -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.Clone(T? obj) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.DeserializeMessage(string! rawMessage) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message? message) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializeMessage(string? messageType) -> string! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializePayload(string? messageType, object? payload) -> string! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.IDataSerializer.SerializePayload(string? messageType, object? payload, int version) -> string! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo! attachDebuggerInfo) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.Close() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.ConnectionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.ConnectionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.DiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable lastChunk) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.DiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs! discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable? lastChunk) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.InitializeCommunication() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> int -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.ProcessRequests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.TesthostProtocol.ITestHostManagerFactory testHostManagerFactory) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendExecutionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs lastChunkArgs, System.Collections.Generic.ICollection runContextAttachments, System.Collections.Generic.ICollection executorUris) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendLog(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel messageLevel, string message) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendTestCases(System.Collections.Generic.IEnumerable discoveredTestCases) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendTestRunStatistics(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs testRunChangedArgs) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo? testProcessStartInfo) -> int +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.ProcessRequests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.TesthostProtocol.ITestHostManagerFactory! testHostManagerFactory) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendExecutionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs! testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? lastChunkArgs, System.Collections.Generic.ICollection? runContextAttachments, System.Collections.Generic.ICollection? executorUris) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendLog(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel messageLevel, string? message) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendTestCases(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.SendTestRunStatistics(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? testRunChangedArgs) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.WaitForRequestSenderConnection(int connectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.CheckVersionWithTestHost() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.Close() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.DiscoverTests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.DiscoverTests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.EndSession() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.InitializeCommunication() -> int -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.InitializeDiscovery(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.InitializeExecution(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.OnClientProcessExit(string stdError) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.InitializeDiscovery(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.InitializeExecution(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.OnClientProcessExit(string! stdError) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.SendDiscoveryAbort() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.SendTestRunAbort() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.SendTestRunCancel() -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources! runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler! eventHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests! runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler! eventHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.WaitForRequestHandlerConnection(int connectionTimeout, System.Threading.CancellationToken cancellationToken) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITransport -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITransport.Initialize() -> System.Net.IPEndPoint +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITransport.Initialize() -> System.Net.IPEndPoint! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITransport.WaitForConnection(int connectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.MessageReceivedEventArgs -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.MessageReceivedEventArgs.Data.get -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.MessageReceivedEventArgs.Data.get -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.MessageReceivedEventArgs.Data.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.MessageReceivedEventArgs.MessageReceivedEventArgs() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Clone(T obj) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Deserialize(string json, int version = 1) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.DeserializeMessage(string rawMessage) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message message) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Serialize(T data, int version = 1) -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializeMessage(string messageType) -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializePayload(string messageType, object payload) -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializePayload(string messageType, object payload, int version) -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Clone(T? obj) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Deserialize(string! json, int version = 1) -> T +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.DeserializeMessage(string! rawMessage) -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message? message) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Serialize(T data, int version = 1) -> string! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializeMessage(string? messageType) -> string! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializePayload(string? messageType, object? payload) -> string! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.SerializePayload(string? messageType, object? payload, int version) -> string! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.Dispose() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.LengthPrefixCommunicationChannel(System.IO.Stream stream) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.MessageReceived -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.NotifyDataAvailable() -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.Send(string data) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.LengthPrefixCommunicationChannel(System.IO.Stream! stream) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.MessageReceived -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.NotifyDataAvailable() -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.LengthPrefixCommunicationChannel.Send(string! data) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.Message() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.MessageType.get -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.MessageType.get -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.MessageType.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.Payload.get -> Newtonsoft.Json.Linq.JToken +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.Payload.get -> Newtonsoft.Json.Linq.JToken? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.Payload.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.BeforeTestRunStartPayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.IsTelemetryOptedIn.get -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.IsTelemetryOptedIn.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.SettingsXml.get -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.SettingsXml.get -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.SettingsXml.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.Sources.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.Sources.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload.Sources.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary!>? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.DiscoveredExtensions.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.DiscoveryCompletePayload() -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.FullyDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.FullyDiscoveredSources.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.IsAborted.get -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.IsAborted.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.LastDiscoveredTests.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.LastDiscoveredTests.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.LastDiscoveredTests.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.Metrics.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.Metrics.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.Metrics.set -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.NotDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.NotDiscoveredSources.set -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.PartiallyDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.PartiallyDiscoveredSources.set -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.SkippedDiscoverySources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.SkippedDiscoverySources.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.TotalTests.get -> long Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.TotalTests.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType @@ -215,49 +232,49 @@ Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostL Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostLaunchedPayload.ProcessId.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostLaunchedPayload.TestHostLaunchedPayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.Message.get -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.Message.get -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.Message.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.MessageLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.MessageLevel.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload.TestMessagePayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.Attachments.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.Attachments.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.Attachments.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.AttachmentsProcessingCompleteEventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.AttachmentsProcessingCompleteEventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.AttachmentsProcessingCompleteEventArgs.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload.TestRunAttachmentsProcessingCompletePayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload.AttachmentsProcessingProgressEventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload.AttachmentsProcessingProgressEventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload.AttachmentsProcessingProgressEventArgs.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload.TestRunAttachmentsProcessingProgressPayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.ExecutorUris.get -> System.Collections.Generic.ICollection +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.ExecutorUris.get -> System.Collections.Generic.ICollection? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.ExecutorUris.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.LastRunTests.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.LastRunTests.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.LastRunTests.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.RunAttachments.get -> System.Collections.Generic.ICollection +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.RunAttachments.get -> System.Collections.Generic.ICollection? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.RunAttachments.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.TestRunCompleteArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.TestRunCompleteArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.TestRunCompleteArgs.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload.TestRunCompletePayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.AdapterSourceMap.get -> System.Collections.Generic.Dictionary> -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.Package.get -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.RunSettings.get -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.TestExecutionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.AdapterSourceMap.get -> System.Collections.Generic.Dictionary!>! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.Package.get -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.RunSettings.get -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.TestExecutionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.TestExecutionContext.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.TestRunCriteriaWithSources(System.Collections.Generic.Dictionary> adapterSourceMap, string package, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext testExecutionContext) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources.TestRunCriteriaWithSources(System.Collections.Generic.Dictionary!>! adapterSourceMap, string? package, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext! testExecutionContext) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.Package.get -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.RunSettings.get -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.TestExecutionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.Package.get -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.RunSettings.get -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.TestExecutionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.TestExecutionContext.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.TestRunCriteriaWithTests(System.Collections.Generic.IEnumerable tests, string package, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext testExecutionContext) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.Tests.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.TestRunCriteriaWithTests(System.Collections.Generic.IEnumerable! tests, string? package, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Engine.ClientProtocol.TestExecutionContext! testExecutionContext) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests.Tests.get -> System.Collections.Generic.IEnumerable! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.InProgressTestCases.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.InProgressTestCases.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.InProgressTestCases.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.TestRunChangedArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.TestRunChangedArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.TestRunChangedArgs.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload.TestRunStatsPayload() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources @@ -274,25 +291,25 @@ Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRes Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.TestRunStatisticsConverter() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Connected -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Disconnected -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Connected -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Disconnected -> System.EventHandler? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.SocketClient() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.SocketClient(System.Func channelFactory) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Start(string endPoint) -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.SocketClient(System.Func! channelFactory) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Start(string! endPoint) -> string! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketClient.Stop() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.AcceptClientAsync() -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message message) -> T -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.HostServer(System.Net.IPEndPoint endpoint) -> System.Net.IPEndPoint -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveMessage() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveRawMessage() -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveRawMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string messageType) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string messageType, object payload) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string messageType, object payload, int version) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendRawMessage(string rawMessage) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SetupClientAsync(System.Net.IPEndPoint endpoint) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.AcceptClientAsync() -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.DeserializePayload(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message! message) -> T? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.HostServer(System.Net.IPEndPoint! endpoint) -> System.Net.IPEndPoint! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveMessage() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveRawMessage() -> string? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.ReceiveRawMessageAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string! messageType) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string! messageType, object! payload) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendMessage(string! messageType, object! payload, int version) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SendRawMessage(string! rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SetupClientAsync(System.Net.IPEndPoint! endpoint) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.SocketCommunicationManager() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.StopClient() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationManager.StopServer() -> void @@ -301,93 +318,77 @@ Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketCommunicationMa Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketConstants Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketConstants.SocketConstants() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Connected -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Disconnected -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Connected -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Disconnected -> System.EventHandler? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.SocketServer() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.SocketServer(System.Func channelFactory) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Start(string endPoint) -> string +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.SocketServer(System.Func! channelFactory) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Start(string! endPoint) -> string? Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketServer.Stop() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.Dispose() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.Initialize() -> System.Net.IPEndPoint -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.SocketTransport(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager communicationManager, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo connectionInfo) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.Initialize() -> System.Net.IPEndPoint! +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.SocketTransport(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ICommunicationManager! communicationManager, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo connectionInfo) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.SocketTransport.WaitForConnection(int connectionTimeout) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleDiscoveredTests(System.Collections.Generic.IEnumerable discoveredTestCases) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable lastChunk) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleRawMessage(string rawMessage) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.TestDiscoveryEventHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler requestHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleDiscoveredTests(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs! discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable? lastChunk) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string? message) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.HandleRawMessage(string! rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestDiscoveryEventHandler.TestDiscoveryEventHandler(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler! requestHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.CheckVersionWithTestHost() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.Close() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.CloseConnectionOnOperationComplete.get -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.CloseConnectionOnOperationComplete.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.DiscoverTests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.DiscoverTests(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.Dispose() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.EndSession() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.InitializeCommunication() -> int -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.InitializeDiscovery(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.InitializeExecution(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.OnClientProcessExit(string stdError) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.InitializeDiscovery(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.InitializeExecution(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.OnClientProcessExit(string! stdError) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.SendDiscoveryAbort() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.SendTestRunAbort() -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.SendTestRunCancel() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.TestRequestSender(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig protocolConfig, Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider runtimeProvider) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources! runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler! eventHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests! runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler! eventHandler) -> void +Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.TestRequestSender(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig! protocolConfig, Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider! runtimeProvider) -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.WaitForRequestHandlerConnection(int connectionTimeout, System.Threading.CancellationToken cancellationToken) -> bool Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.VersionedMessage Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.VersionedMessage.Version.get -> int Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.VersionedMessage.Version.set -> void Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.VersionedMessage.VersionedMessage() -> void -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.DefaultTestPlatformContractResolver.CreateContract(System.Type objectType) -> Newtonsoft.Json.Serialization.JsonContract -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.CanConvert(System.Type objectType) -> bool -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) -> object -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) -> void -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.CanConvert(System.Type objectType) -> bool +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Message.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.DefaultTestPlatformContractResolver.CreateContract(System.Type! objectType) -> Newtonsoft.Json.Serialization.JsonContract! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.CanConvert(System.Type! objectType) -> bool +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.ReadJson(Newtonsoft.Json.JsonReader! reader, System.Type! objectType, object! existingValue, Newtonsoft.Json.JsonSerializer! serializer) -> object! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestCaseConverter.WriteJson(Newtonsoft.Json.JsonWriter! writer, object! value, Newtonsoft.Json.JsonSerializer! serializer) -> void +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.CanConvert(System.Type! objectType) -> bool override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.CanRead.get -> bool override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.CanWrite.get -> bool -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) -> object -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) -> void -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestPlatformContractResolver1.CreateContract(System.Type objectType) -> Newtonsoft.Json.Serialization.JsonContract -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.CanConvert(System.Type objectType) -> bool -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) -> object -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) -> void -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.CanConvert(System.Type objectType) -> bool -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) -> object -override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) -> void -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.Create() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.Instance.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Instance.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestDiscovery.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestRun.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AttachDebuggerToDefaultTestHostFailure.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ConnectionClosed.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ConnectionTimeoutErrorMessage.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.Culture.get -> System.Globalization.CultureInfo -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.Culture.set -> void -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ResourceManager.get -> System.Resources.ResourceManager -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.TestHostProcessCrashed.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.UnableToCommunicateToTestHost.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.UnexpectedMessage.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.VersionCheckFailed.get -> string -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.VersionCheckTimedout.get -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.SendDiscoveryAbort() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.FullyDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.NotDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.PartiallyDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.SendDiscoveryAbort() -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary> -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.DiscoveredExtensions.set -> void -static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestDiscoveryWithReason.get -> string -const Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.MessageType.EditorAttachDebugger2 = "TestExecution.EditorAttachDebugger2" -> string -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.EventHandlers.TestRunEventsHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo attachDebuggerInfo) -> bool -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo attachDebuggerInfo) -> bool -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler eventHandler) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Interfaces.ITestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler eventHandler) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithSources runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler eventHandler) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.TestRequestSender.StartTestRun(Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCriteriaWithTests runCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler eventHandler) -> void -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.FullyDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.NotDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.PartiallyDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.SkippedDiscoverySources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload.SkippedDiscoverySources.set -> void +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.ReadJson(Newtonsoft.Json.JsonReader! reader, System.Type! objectType, object! existingValue, Newtonsoft.Json.JsonSerializer! serializer) -> object! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestObjectConverter.WriteJson(Newtonsoft.Json.JsonWriter! writer, object! value, Newtonsoft.Json.JsonSerializer! serializer) -> void +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestPlatformContractResolver1.CreateContract(System.Type! objectType) -> Newtonsoft.Json.Serialization.JsonContract! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.CanConvert(System.Type! objectType) -> bool +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.ReadJson(Newtonsoft.Json.JsonReader! reader, System.Type! objectType, object! existingValue, Newtonsoft.Json.JsonSerializer! serializer) -> object! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.WriteJson(Newtonsoft.Json.JsonWriter! writer, object! value, Newtonsoft.Json.JsonSerializer! serializer) -> void +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.CanConvert(System.Type! objectType) -> bool +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.ReadJson(Newtonsoft.Json.JsonReader! reader, System.Type! objectType, object! existingValue, Newtonsoft.Json.JsonSerializer! serializer) -> object! +override Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestRunStatisticsConverter.WriteJson(Newtonsoft.Json.JsonWriter! writer, object! value, Newtonsoft.Json.JsonSerializer! serializer) -> void +static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.Create() -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender! +static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender.Instance.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.DataCollectionTestCaseEventSender? +static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.Instance.get -> Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer! +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestDiscovery.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestDiscoveryWithReason.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AbortedTestRun.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.AttachDebuggerToDefaultTestHostFailure.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ConnectionClosed.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ConnectionTimeoutErrorMessage.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.Culture.get -> System.Globalization.CultureInfo +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.Culture.set -> void +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.ResourceManager.get -> System.Resources.ResourceManager +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.TestHostProcessCrashed.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.UnableToCommunicateToTestHost.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.UnexpectedMessage.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.VersionCheckFailed.get -> string +~static Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Resources.Resources.VersionCheckTimedout.get -> string diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net451/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/net6.0/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.CommunicationUtilities/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net45/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net45/PublicAPI.Shipped.txt index 1314d91a06..32196d81df 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net45/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net45/PublicAPI.Shipped.txt @@ -3,8 +3,8 @@ Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.Write(string? message, Microsoft.VisualStudio.TestPlatform.Utilities.OutputLevel level) -> void Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.WriteLine(string? message, Microsoft.VisualStudio.TestPlatform.Utilities.OutputLevel level) -> void Microsoft.VisualStudio.TestPlatform.Utilities.OutputExtensions -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener! listener) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain! childDomain) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener? listener) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain? childDomain) -> void static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> System.Diagnostics.TraceLevel static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void static Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.Instance.get -> Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput! diff --git a/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net451/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net451/PublicAPI.Shipped.txt index 1314d91a06..32196d81df 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net451/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.CoreUtilities/PublicAPI/net451/PublicAPI.Shipped.txt @@ -3,8 +3,8 @@ Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.Write(string? message, Microsoft.VisualStudio.TestPlatform.Utilities.OutputLevel level) -> void Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.WriteLine(string? message, Microsoft.VisualStudio.TestPlatform.Utilities.OutputLevel level) -> void Microsoft.VisualStudio.TestPlatform.Utilities.OutputExtensions -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener! listener) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain! childDomain) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener? listener) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain? childDomain) -> void static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> System.Diagnostics.TraceLevel static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void static Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput.Instance.get -> Microsoft.VisualStudio.TestPlatform.Utilities.ConsoleOutput! diff --git a/src/Microsoft.TestPlatform.CoreUtilities/Tracing/EqtTrace.cs b/src/Microsoft.TestPlatform.CoreUtilities/Tracing/EqtTrace.cs index e0bac34e91..35c3a355e3 100644 --- a/src/Microsoft.TestPlatform.CoreUtilities/Tracing/EqtTrace.cs +++ b/src/Microsoft.TestPlatform.CoreUtilities/Tracing/EqtTrace.cs @@ -28,12 +28,12 @@ public static class EqtTrace private static readonly IPlatformEqtTrace TraceImpl = new PlatformEqtTrace(); #if NETFRAMEWORK - public static void SetupRemoteEqtTraceListeners(AppDomain childDomain) + public static void SetupRemoteEqtTraceListeners(AppDomain? childDomain) { TraceImpl.SetupRemoteEqtTraceListeners(childDomain); } - public static void SetupListener(TraceListener listener) + public static void SetupListener(TraceListener? listener) { TraceImpl.SetupListener(listener); } diff --git a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IFrameworkHandle.cs b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IFrameworkHandle.cs index 96bebcabcc..13cb33256a 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IFrameworkHandle.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IFrameworkHandle.cs @@ -27,5 +27,5 @@ public interface IFrameworkHandle : ITestExecutionRecorder, IMessageLogger /// Command line arguments the process should be launched with. /// Environment variables to be set in target process /// Process ID of the started process. - int LaunchProcessWithDebuggerAttached(string filePath, string workingDirectory, string arguments, IDictionary environmentVariables); + int LaunchProcessWithDebuggerAttached(string filePath, string? workingDirectory, string? arguments, IDictionary? environmentVariables); } diff --git a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IRunSettings.cs b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IRunSettings.cs index aec0559d0c..65135af75b 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IRunSettings.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/IRunSettings.cs @@ -13,7 +13,7 @@ public interface IRunSettings /// /// Name of the settings section to get. /// The settings provider for the settings or null if one was not found. - ISettingsProvider? GetSettings(string settingsName); + ISettingsProvider? GetSettings(string? settingsName); /// /// Settings used for this run. diff --git a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestCaseFilterExpression.cs b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestCaseFilterExpression.cs index 040e199b9f..469bc5c69b 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestCaseFilterExpression.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestCaseFilterExpression.cs @@ -18,5 +18,5 @@ public interface ITestCaseFilterExpression /// /// Matched test case with test case filtering criteria. /// - bool MatchTestCase(TestCase testCase, Func propertyValueProvider); + bool MatchTestCase(TestCase testCase, Func propertyValueProvider); } diff --git a/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestLog.cs b/src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestExecutionRecorder.cs similarity index 100% rename from src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestLog.cs rename to src/Microsoft.TestPlatform.ObjectModel/Adapter/Interfaces/ITestExecutionRecorder.cs diff --git a/src/Microsoft.TestPlatform.ObjectModel/Client/Events/TestRunCompleteEventArgs.cs b/src/Microsoft.TestPlatform.ObjectModel/Client/Events/TestRunCompleteEventArgs.cs index 7284fad4ca..8ae21a7809 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Client/Events/TestRunCompleteEventArgs.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Client/Events/TestRunCompleteEventArgs.cs @@ -38,7 +38,7 @@ public TestRunCompleteEventArgs( bool isCanceled, bool isAborted, Exception? error, - Collection attachmentSets, + Collection? attachmentSets, TimeSpan elapsedTime) : this( stats, diff --git a/src/Microsoft.TestPlatform.ObjectModel/Client/Interfaces/IDiscoveryRequest.cs b/src/Microsoft.TestPlatform.ObjectModel/Client/Interfaces/IDiscoveryRequest.cs index 88cddf8197..e0916eb363 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Client/Interfaces/IDiscoveryRequest.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Client/Interfaces/IDiscoveryRequest.cs @@ -15,23 +15,23 @@ public interface IDiscoveryRequest : IRequest /// /// Handler for notifying discovery process is started /// - event EventHandler OnDiscoveryStart; + event EventHandler? OnDiscoveryStart; /// /// Handler for notifying discovery process is complete /// - event EventHandler OnDiscoveryComplete; + event EventHandler? OnDiscoveryComplete; /// /// Handler for notifying when newly found tests are available for UI to fetch. /// - event EventHandler OnDiscoveredTests; + event EventHandler? OnDiscoveredTests; /// /// Handler for receiving error during fetching/execution. This is used for when abnormal error /// occurs; equivalent of IRunMessageLogger in the current RockSteady core /// - event EventHandler OnDiscoveryMessage; + event EventHandler? OnDiscoveryMessage; /// /// Gets the discovery criterion. diff --git a/src/Microsoft.TestPlatform.ObjectModel/Constants.cs b/src/Microsoft.TestPlatform.ObjectModel/Constants.cs index baae3c2e9a..5fa611a9b1 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Constants.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Constants.cs @@ -199,7 +199,7 @@ public static class Constants /// public static readonly string DefaultResultsDirectory = #if NETSTANDARD1_0 - Path.Combine(".", ResultsDirectoryName); + Path.Combine(".", ResultsDirectoryName); #else Path.Combine(Directory.GetCurrentDirectory(), ResultsDirectoryName); #endif diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Shipped.txt index f60fbb21e7..3f37e3a39a 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Shipped.txt @@ -1,398 +1,467 @@ -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveredTests -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryComplete -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryMessage -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryStart -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestResult -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunComplete -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunMessage -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunStart -> System.EventHandler -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectDumpKey = "CollectDump" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectHangDumpKey = "CollectHangDump" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.CollectDumpOnTestSessionHang = "CollectDumpOnTestSessionHang" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectionRunSettingsName = "DataCollectionRunSettings" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorSettingName = "DataCollector" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorsSettingName = "DataCollectors" -> string +#nullable enable +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveredTests -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryComplete -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryMessage -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.DiscoveryStart -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestResult -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunComplete -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunMessage -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestRunStart -> System.EventHandler? +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectDumpKey = "CollectDump" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.BlameCollectHangDumpKey = "CollectHangDump" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.CollectDumpOnTestSessionHang = "CollectDumpOnTestSessionHang" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectionRunSettingsName = "DataCollectionRunSettings" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorSettingName = "DataCollector" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DataCollectorsSettingName = "DataCollectors" -> string! const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultBatchSize = 10 -> long const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultCpuCount = 1 -> int const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultFramework = Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework40 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultTreatTestAdapterErrorsAsWarnings = false -> bool -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework35 = ".NETFramework,Version=v3.5" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework40 = ".NETFramework,Version=v4.0" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework45 = ".NETFramework,Version=v4.5" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework451 = ".NETFramework,Version=v4.5.1" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework46 = ".NETFramework,Version=v4.6" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkCore10 = ".NETCoreApp,Version=v1.0" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameWorkStringPrefix = ".NETFramework,Version=" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkUap10 = "UAP,Version=v10.0" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.EmptyRunSettings = "" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectionRunSettingsName = "InProcDataCollectionRunSettings" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorSettingName = "InProcDataCollector" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorsSettingName = "InProcDataCollectors" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedName = "assemblyQualifiedName" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedNameLower = "assemblyqualifiedname" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBase = "codeBase" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBaseLower = "codebase" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationName = "Configuration" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationNameLower = "configuration" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerEnabledName = "enabled" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyName = "friendlyName" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyNameLower = "friendlyname" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerRunSettingsName = "LoggerRunSettings" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerSettingName = "Logger" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggersSettingName = "Loggers" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerUriName = "uri" -> string +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework35 = ".NETFramework,Version=v3.5" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework40 = ".NETFramework,Version=v4.0" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework45 = ".NETFramework,Version=v4.5" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework451 = ".NETFramework,Version=v4.5.1" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFramework46 = ".NETFramework,Version=v4.6" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkCore10 = ".NETCoreApp,Version=v1.0" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameWorkStringPrefix = ".NETFramework,Version=" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DotNetFrameworkUap10 = "UAP,Version=v10.0" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.EmptyRunSettings = "" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectionRunSettingsName = "InProcDataCollectionRunSettings" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorSettingName = "InProcDataCollector" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.InProcDataCollectorsSettingName = "InProcDataCollectors" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedName = "assemblyQualifiedName" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerAssemblyQualifiedNameLower = "assemblyqualifiedname" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBase = "codeBase" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerCodeBaseLower = "codebase" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationName = "Configuration" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerConfigurationNameLower = "configuration" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerEnabledName = "enabled" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyName = "friendlyName" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerFriendlyNameLower = "friendlyname" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerRunSettingsName = "LoggerRunSettings" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerSettingName = "Logger" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggersSettingName = "Loggers" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.LoggerUriName = "uri" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.MinimumProtocolVersionWithCancelDiscoveryEventHandlerSupport = 6 -> int const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.MinimumProtocolVersionWithDebugSupport = 3 -> int -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.ResultsDirectoryName = "TestResults" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunConfigurationSettingsName = "RunConfiguration" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunSettingsName = "RunSettings" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkAttributeFullName = "System.Runtime.Versioning.TargetFrameworkAttribute" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkName = "TargetFrameworkName" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TestRunParametersName = "TestRunParameters" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TraceLogMaxFileSizeInKB = "TraceLogMaxFileSizeInKb" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TreatNoTestsAsError = "TreatNoTestsAsError" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnitTestExtensionType = "UnitTestExtension" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnspecifiedAdapterPath = "_none_" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TargetFramework = "TargetFramework" -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TestRunDirectory = "TestRunDirectory" -> string +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.ResultsDirectoryName = "TestResults" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunConfigurationSettingsName = "RunConfiguration" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.RunSettingsName = "RunSettings" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkAttributeFullName = "System.Runtime.Versioning.TargetFrameworkAttribute" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TargetFrameworkName = "TargetFrameworkName" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TestRunParametersName = "TestRunParameters" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TraceLogMaxFileSizeInKB = "TraceLogMaxFileSizeInKb" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.TreatNoTestsAsError = "TreatNoTestsAsError" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnitTestExtensionType = "UnitTestExtension" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.UnspecifiedAdapterPath = "_none_" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TargetFramework = "TargetFramework" -> string! +const Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames.TestRunDirectory = "TestRunDirectory" -> string! const Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.EscapeCharacter = '\\' -> char Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext.RunSettings.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext.RunSettings.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings? Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.EnableShutdownAfterTestRun.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.EnableShutdownAfterTestRun.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.LaunchProcessWithDebuggerAttached(string filePath, string workingDirectory, string arguments, System.Collections.Generic.IDictionary environmentVariables) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle.LaunchProcessWithDebuggerAttached(string! filePath, string? workingDirectory, string? arguments, System.Collections.Generic.IDictionary? environmentVariables) -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle2 Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle2.AttachDebuggerToProcess(int pid) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.GetTestCaseFilter(System.Collections.Generic.IEnumerable supportedProperties, System.Func propertyProvider) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.GetTestCaseFilter(System.Collections.Generic.IEnumerable? supportedProperties, System.Func! propertyProvider) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression? Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.InIsolation.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.IsBeingDebugged.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.IsDataCollectionEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.KeepAlive.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.SolutionDirectory.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.TestRunDirectory.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.SolutionDirectory.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext.TestRunDirectory.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.GetSettings(string settingsName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.SettingsXml.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.GetSettings(string? settingsName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunSettings.SettingsXml.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider.Load(System.Xml.XmlReader reader) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ISettingsProvider.Load(System.Xml.XmlReader! reader) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink.SendTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase discoveredTest) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink.SendTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! discoveredTest) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.MatchTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase, System.Func propertyValueProvider) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.TestCaseFilterValue.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.MatchTestCase(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testCase, System.Func! propertyValueProvider) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseFilterExpression.TestCaseFilterValue.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer.DiscoverTests(System.Collections.Generic.IEnumerable sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext discoveryContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink discoverySink) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestDiscoverer.DiscoverTests(System.Collections.Generic.IEnumerable! sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IDiscoveryContext! discoveryContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger! logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestCaseDiscoverySink! discoverySink) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordAttachments(System.Collections.Generic.IList attachmentSets) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordAttachments(System.Collections.Generic.IList! attachmentSets) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testCase, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! testResult) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutionRecorder.RecordStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testCase) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.Cancel() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle frameworkHandle) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable? tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext? runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle? frameworkHandle) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor.RunTests(System.Collections.Generic.IEnumerable? sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext? runContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IFrameworkHandle? frameworkHandle) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2 -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext runContext) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable? tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext! runContext) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.ITestExecutor2.ShouldAttachToTestHost(System.Collections.Generic.IEnumerable? sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.IRunContext! runContext) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string message, System.Exception innerException) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(string? message, System.Exception? innerException) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.FilterValue.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.FilterValue.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message, string filterValue) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string message, System.Exception innerException) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string? message, string? filterValue) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(string? message, System.Exception? innerException) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture -Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.S390x = 6 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture -Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.ARM64 = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.AnyCPU = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.ARM = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture +Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.ARM64 = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.Default = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture +Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.S390x = 6 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.X64 = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture.X86 = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet -Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Attachments.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.AttachmentSet(System.Uri uri, string displayName) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.DisplayName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Uri.get -> System.Uri +Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Attachments.get -> System.Collections.Generic.IList! +Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.AttachmentSet(System.Uri! uri, string! displayName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.DisplayName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.Uri.get -> System.Uri! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria runCriteria) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.BaseTestRunCriteria(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria! runCriteria) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria? other) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.FrequencyOfRunStatsChangeEvent.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.KeepAlive.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.RunStatsChangeEventTimeout.get -> System.TimeSpan -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestRunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.TestRunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.CustomHostLaunchAckPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.ErrorMessage.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.ErrorMessage.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.ErrorMessage.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.HostProcessId.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload.HostProcessId.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestCases.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestsEventArgs(System.Collections.Generic.IEnumerable discoveredTestCases) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestCases.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveredTestsEventArgs.DiscoveredTestsEventArgs(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary!>? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveredExtensions.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveryCompleteEventArgs() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveryCompleteEventArgs(long totalTests, bool isAborted) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.FullyDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.FullyDiscoveredSources.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.IsAborted.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.IsAborted.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.Metrics.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.NotDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.NotDiscoveredSources.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.PartiallyDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.PartiallyDiscoveredSources.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.SkippedDiscoveredSources.get -> System.Collections.Generic.IList? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.SkippedDiscoveredSources.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.TotalCount.get -> long +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.TotalCount.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary> +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary!>! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveredTestEventTimeout.get -> System.TimeSpan Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfDiscoveredTestsEvent, string testSettings) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfDiscoveredTestsEvent, System.TimeSpan discoveredTestEventTimeout, string runSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfDiscoveredTestsEvent, string? testSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfDiscoveredTestsEvent, System.TimeSpan discoveredTestEventTimeout, string? runSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfDiscoveredTestsEvent, System.TimeSpan discoveredTestEventTimeout, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.FrequencyOfDiscoveredTestsEvent.get -> long -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Package.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Package.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Package.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.RunSettings.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Sources.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestCaseFilter.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.RunSettings.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.Sources.get -> System.Collections.Generic.IEnumerable! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestCaseFilter.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestCaseFilter.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.DiscoveryRequestPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.RunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.RunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.RunSettings.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.Sources.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.Sources.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.Sources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestPlatformOptions.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryStartEventArgs.DiscoveryStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! discoveryCriteria) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.Attached.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.Attached.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.EditorAttachDebuggerAckPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.ErrorMessage.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.ErrorMessage.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload.ErrorMessage.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? other) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterOptions() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegEx.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegEx.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegEx.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegExReplacement.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegExReplacement.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.FilterRegExReplacement.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IBaseProxy -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IBaseProxy.UpdateTestProcessStartInfo(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IBaseProxy.UpdateTestProcessStartInfo(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! testProcessStartInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.Abort() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.DiscoverAsync() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveredTests -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryComplete -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryMessage -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryStart -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.DiscoveryCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveredTests -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryComplete -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryMessage -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest.OnDiscoveryStart -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo! attachDebuggerInfo) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs! testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? lastChunkArgs, System.Collections.Generic.ICollection? runContextAttachments, System.Collections.Generic.ICollection? executorUris) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? testRunChangedArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! testProcessStartInfo) -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Add(string metric, object value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Metrics.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Add(string! metric, object! value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection.Metrics.get -> System.Collections.Generic.IDictionary! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.AttachDebuggerInfo() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.ProcessId.get -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.ProcessId.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.Sources.get -> System.Collections.Generic.ICollection? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.Sources.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.TargetFramework.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.TargetFramework.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.IsDebug.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo defaultTestHostStartInfo) -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo defaultTestHostStartInfo, System.Threading.CancellationToken cancellationToken) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! defaultTestHostStartInfo) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher.LaunchTestHost(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! defaultTestHostStartInfo, System.Threading.CancellationToken cancellationToken) -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2 Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2.AttachDebuggerToProcess(int pid) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher2.AttachDebuggerToProcess(int pid, System.Threading.CancellationToken cancellationToken) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher3 +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher3.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo! attachDebuggerInfo, System.Threading.CancellationToken cancellationToken) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest.OnRawMessageReceived -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest.OnRawMessageReceived -> System.EventHandler! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest.WaitForCompletion(int timeout) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.IsTelemetryOptedIn.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.IsTelemetryOptedIn.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.MetricsCollection.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.MetricsCollection.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IMetricsCollection! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.MetricsCollection.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.ProtocolConfig.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.ProtocolConfig.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData.ProtocolConfig.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveredTests(System.Collections.Generic.IEnumerable discoveredTestCases) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveryComplete(long totalTests, System.Collections.Generic.IEnumerable lastChunk, bool isAborted) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveredTests(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler.HandleDiscoveryComplete(long totalTests, System.Collections.Generic.IEnumerable? lastChunk, bool isAborted) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveredTests(System.Collections.Generic.IEnumerable discoveredTestCases) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable lastChunk) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveredTests(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs! discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable? lastChunk) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLogger -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLogger.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents events, string testRunDirectory) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLogger.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents! events, string! testRunDirectory) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLoggerWithParameters -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLoggerWithParameters.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents events, System.Collections.Generic.Dictionary parameters) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestLoggerWithParameters.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents! events, System.Collections.Generic.Dictionary! parameters) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleRawMessage(string rawMessage) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestMessageEventHandler.HandleRawMessage(string! rawMessage) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.ClearExtensions() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.UpdateExtensions(System.Collections.Generic.IEnumerable pathToAdditionalExtensions, bool skipExtensionFilters) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateDiscoveryRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData! requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria! discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, System.Collections.Generic.Dictionary! sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger! warningLogger) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateTestRunRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData! requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria! testRunCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, System.Collections.Generic.Dictionary! sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger! warningLogger) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.StartTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData! requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria! criteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, System.Collections.Generic.Dictionary! sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger! warningLogger) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.UpdateExtensions(System.Collections.Generic.IEnumerable? pathToAdditionalExtensions, bool skipExtensionFilters) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatformCapabilities Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatformCapabilities.TestPlatformType.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleProcessedAttachmentsChunk(System.Collections.Generic.IEnumerable attachments) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs attachmentsProcessingCompleteEventArgs, System.Collections.Generic.IEnumerable lastChunk) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingProgress(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs AttachmentsProcessingProgressEventArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleProcessedAttachmentsChunk(System.Collections.Generic.IEnumerable! attachments) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs! attachmentsProcessingCompleteEventArgs, System.Collections.Generic.IEnumerable? lastChunk) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler.HandleTestRunAttachmentsProcessingProgress(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs! AttachmentsProcessingProgressEventArgs) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.FrequencyOfRunStatsChangeEvent.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.HasSpecificSources.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.HasSpecificTests.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.Tests.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration.Tests.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs lastChunkArgs, System.Collections.Generic.ICollection runContextAttachments, System.Collections.Generic.ICollection executorUris) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs testRunChangedArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs! testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? lastChunkArgs, System.Collections.Generic.ICollection? runContextAttachments, System.Collections.Generic.ICollection? executorUris) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? testRunChangedArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! testProcessStartInfo) -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler2 Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler2.AttachDebuggerToProcess(int pid) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.Abort() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.CancelAsync() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.DataCollectionMessage -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.DataCollectionMessage -> System.EventHandler! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.ExecuteAsync() -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunCompletion -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStart -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStatsChange -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunCompletion -> System.EventHandler! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStart -> System.EventHandler! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.OnRunStatsChange -> System.EventHandler! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.State.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunConfiguration.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunMessage -> System.EventHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunConfiguration.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunConfiguration! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest.TestRunMessage -> System.EventHandler! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.ExecutedTests.get -> long -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics.this[Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome].get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStartTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs? eventArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStopTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs? eventArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger.LogWarning(string! message) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.EventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.EventArgs.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.StartTestSessionAckPayload() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.HasCustomHostLauncher.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.HasCustomHostLauncher.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.IsDebuggingEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.IsDebuggingEnabled.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.RunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.RunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.RunSettings.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.Sources.get -> System.Collections.Generic.IList +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.Sources.get -> System.Collections.Generic.IList? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.Sources.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.StartTestSessionPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionPayload.TestPlatformOptions.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.EventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.EventArgs.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.StopTestSessionAckPayload() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.CollectMetrics.get -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.CollectMetrics.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.StopTestSessionPayload() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.ProtocolConfig() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.Version.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig.Version.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.RequestExtensions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.Metrics.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.StartTestSessionCompleteEventArgs() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.RunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.RunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.RunSettings.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.Sources.get -> System.Collections.Generic.IList +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.Sources.get -> System.Collections.Generic.IList? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.Sources.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.StartTestSessionCriteria() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.TestHostLauncher.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria.TestHostLauncher.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.IsStopped.get -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.IsStopped.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.Metrics.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.StopTestSessionCompleteEventArgs() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.StopTestSessionCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestLoggerEvents.TestLoggerEvents() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.CollectMetrics.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.CollectMetrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.FilterOptions.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.SkipDefaultAdapters.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.SkipDefaultAdapters.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestCaseFilter.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestCaseFilter.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestCaseFilter.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions.TestPlatformOptions() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType.InProc = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType.OutOfProc = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformType Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Error.get -> System.Exception +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Error.get -> System.Exception? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.IsCanceled.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.Metrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.TestRunAttachmentsProcessingCompleteEventArgs(bool isCanceled, System.Exception error) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs.TestRunAttachmentsProcessingCompleteEventArgs(bool isCanceled, System.Exception? error) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.Attachments.get -> System.Collections.Generic.IEnumerable +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.Attachments.get -> System.Collections.Generic.IEnumerable? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.Attachments.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.InvokedDataCollectors.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.InvokedDataCollectors.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.CollectMetrics.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.CollectMetrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.RunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.InvokedDataCollectors.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.InvokedDataCollectors.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.RunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.RunSettings.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload.TestRunAttachmentsProcessingPayload() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.AttachmentProcessorsCount.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorIndex.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorProgress.get -> long -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorUris.get -> System.Collections.Generic.ICollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.TestRunAttachmentsProcessingProgressEventArgs(long currentAttachmentProcessorIndex, System.Collections.Generic.ICollection currentAttachmentProcessorUris, long currentAttachmentProcessorProgress, long attachmentProcessorsCount) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.CurrentAttachmentProcessorUris.get -> System.Collections.Generic.ICollection! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs.TestRunAttachmentsProcessingProgressEventArgs(long currentAttachmentProcessorIndex, System.Collections.Generic.ICollection! currentAttachmentProcessorUris, long currentAttachmentProcessorProgress, long attachmentProcessorsCount) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.ActiveTests.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.NewTestResults.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunChangedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics stats, System.Collections.Generic.IEnumerable newTestResults, System.Collections.Generic.IEnumerable activeTests) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.ActiveTests.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.NewTestResults.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunChangedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? stats, System.Collections.Generic.IEnumerable? newTestResults, System.Collections.Generic.IEnumerable? activeTests) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics stats, bool isCanceled, bool isAborted, System.Exception error, System.Collections.ObjectModel.Collection attachmentSets, System.TimeSpan elapsedTime) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics stats, bool isCanceled, bool isAborted, System.Exception error, System.Collections.ObjectModel.Collection attachmentSets, System.Collections.ObjectModel.Collection invokedDataCollectors, System.TimeSpan elapsedTime) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.InvokedDataCollectors.get -> System.Collections.ObjectModel.Collection -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.AttachmentSets.get -> System.Collections.ObjectModel.Collection +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.AttachmentSets.get -> System.Collections.ObjectModel.Collection! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary!>? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.DiscoveredExtensions.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.ElapsedTimeInRunningTests.get -> System.TimeSpan -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Error.get -> System.Exception +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Error.get -> System.Exception? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.InvokedDataCollectors.get -> System.Collections.ObjectModel.Collection! Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.IsAborted.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.IsCanceled.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.Metrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? stats, bool isCanceled, bool isAborted, System.Exception? error, System.Collections.ObjectModel.Collection? attachmentSets, System.Collections.ObjectModel.Collection? invokedDataCollectors, System.TimeSpan elapsedTime) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? stats, bool isCanceled, bool isAborted, System.Exception? error, System.Collections.ObjectModel.Collection? attachmentSets, System.TimeSpan elapsedTime) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.TestRunStatistics.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary> +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.AdapterSourceMap.get -> System.Collections.Generic.Dictionary!>? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.DebugEnabledForTestSession.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.DebugEnabledForTestSession.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria other) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria? other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.FilterOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.HasSpecificSources.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.HasSpecificTests.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Sources.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestCaseFilter.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.Dictionary> adapterSourceMap, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, bool debugEnabledForTestSession) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria baseTestRunCriteria) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, string testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions filterOptions) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher, string testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions filterOptions, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, bool debugEnabledForTestSession) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Tests.get -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Sources.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestCaseFilter.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.Dictionary!>! adapterSourceMap, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string! testSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string! testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string! testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, bool debugEnabledForTestSession) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! tests, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria! baseTestRunCriteria) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher, string? testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? filterOptions) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, long frequencyOfRunStatsChangeEvent, bool keepAlive, string? testSettings, System.TimeSpan runStatsChangeEventTimeout, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher, string? testCaseFilter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? filterOptions, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, bool debugEnabledForTestSession) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestRunCriteria(System.Collections.Generic.IEnumerable! sources, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria! testRunCriteria) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Tests.get -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.DebuggingEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.DebuggingEnabled.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.KeepAlive.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.KeepAlive.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.RunSettings.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.RunSettings.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.RunSettings.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.Sources.get -> System.Collections.Generic.List +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.Sources.get -> System.Collections.Generic.List? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.Sources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestCases.get -> System.Collections.Generic.List +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestCases.get -> System.Collections.Generic.List? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestCases.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestPlatformOptions.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestPlatformOptions.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestRunRequestPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload.TestSessionInfo.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunCriteria.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStartEventArgs.TestRunStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria! testRunCriteria) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Aborted = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Canceled = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState @@ -403,33 +472,42 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunState.Pending = 1 Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.ExecutedTests.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.ExecutedTests.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.Stats.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(long executedTests, System.Collections.Generic.IDictionary stats) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(System.Collections.Generic.IDictionary stats) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(long executedTests, System.Collections.Generic.IDictionary? stats) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.TestRunStatistics(System.Collections.Generic.IDictionary? stats) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics.this[Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome].get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? other) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Id.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.TestSessionInfo() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole.Client = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole.Host = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! testResult) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.DefaultExecutorUriAttribute(string executorUri) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.ExecutorUri.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.DefaultExecutorUriAttribute(string! executorUri) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultExecutorUriAttribute.ExecutorUri.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.DefaultLoggerParameterNames +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.EditorAttachDebuggerPayload() -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.ProcessID.get -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.ProcessID.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.Sources.get -> System.Collections.Generic.ICollection? +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.Sources.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.TargetFramework.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.TargetFramework.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUri.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUriAttribute(string extensionUri) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUri.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.ExtensionUriAttribute.ExtensionUriAttribute(string! extensionUri) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtension.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtensionAttribute(string fileExtension) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtension.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.FileExtensionAttribute.FileExtensionAttribute(string! fileExtension) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework -Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Name.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Version.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Name.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.Version.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework35 = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.Framework40 = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion @@ -438,87 +516,98 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.FrameworkCore10 Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.FrameworkUap10 = 5 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyNameAttribute(string friendlyName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.FriendlyNameAttribute.FriendlyNameAttribute(string! friendlyName) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.Data.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.Data.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.Data.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ErrroCode.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ErrroCode.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string message, int errorCode, int processId) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string! message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.HostProviderEventArgs(string! message, int errorCode, int processId) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ProcessId.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.HostProviderEventArgs.ProcessId.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CanExecuteCurrentRunConfiguration(string runsettingsXml) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CleanTestHostAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CanExecuteCurrentRunConfiguration(string? runsettingsXml) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.CleanTestHostAsync(System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestHostConnectionInfo() -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestHostProcessStartInfo(System.Collections.Generic.IEnumerable sources, System.Collections.Generic.IDictionary environmentVariables, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo connectionInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestPlatformExtensions(System.Collections.Generic.IEnumerable sources, System.Collections.Generic.IEnumerable extensions) -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestSources(System.Collections.Generic.IEnumerable sources) -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostExited -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostLaunched -> System.EventHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, string runsettingsXml) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.LaunchTestHostAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testHostStartInfo, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.SetCustomLauncher(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customLauncher) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestHostProcessStartInfo(System.Collections.Generic.IEnumerable! sources, System.Collections.Generic.IDictionary? environmentVariables, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo connectionInfo) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestPlatformExtensions(System.Collections.Generic.IEnumerable! sources, System.Collections.Generic.IEnumerable! extensions) -> System.Collections.Generic.IEnumerable! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.GetTestSources(System.Collections.Generic.IEnumerable! sources) -> System.Collections.Generic.IEnumerable! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostExited -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.HostLaunched -> System.EventHandler? +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger? logger, string! runsettingsXml) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.LaunchTestHostAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo! testHostStartInfo, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.SetCustomLauncher(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customLauncher) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider.Shared.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider2 Microsoft.VisualStudio.TestPlatform.ObjectModel.Host.ITestRuntimeProvider2.AttachDebuggerToTestHost() -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.AssemblyQualifiedName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector? other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.FilePath.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.FriendlyName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.HasAttachmentProcessor.get -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.InvokedDataCollector(System.Uri! uri, string! friendlyName, string! assemblyQualifiedName, string! filePath, bool hasAttachmentProcessor) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Uri.get -> System.Uri! Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue -Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue.LazyPropertyValue(System.Func getValue) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue.LazyPropertyValue(System.Func! getValue) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue.Value.get -> T Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.GetExistingLoggerIndex(Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings loggerSettings) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.GetExistingLoggerIndex(Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings! loggerSettings) -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.LoggerRunSettings() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.LoggerSettingsList.get -> System.Collections.ObjectModel.Collection +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.LoggerSettingsList.get -> System.Collections.ObjectModel.Collection! Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.AssemblyQualifiedName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.AssemblyQualifiedName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.AssemblyQualifiedName.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.CodeBase.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.CodeBase.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.CodeBase.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.FriendlyName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.FriendlyName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.FriendlyName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.IsEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.IsEnabled.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.LoggerSettings() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Uri.get -> System.Uri +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Uri.get -> System.Uri? Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Uri.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.DataCollectionMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.FriendlyName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.DataCollectionMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string! message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.FriendlyName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.FriendlyName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.TestCaseId.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.TestCaseId.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.Uri.get -> System.Uri +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.Uri.get -> System.Uri? Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.DataCollectionMessageEventArgs.Uri.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger.SendMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel testMessageLevel, string message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger.SendMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel testMessageLevel, string! message) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Error = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Informational = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel.Warning = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.Result.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult result) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.Result.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! result) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Level.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Level.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Message.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Message.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.Message.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.TestRunMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunMessageEventArgs.TestRunMessageEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string! message) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.ProcessId.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.TestRunStartedEventArgs(int processId) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException -Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string message, System.Exception inner) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.ProcessExitedException.ProcessExitedException(string? message, System.Exception? inner) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSize.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSize.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BatchSizeSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BinariesRoot.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.BinariesRoot.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.CollectSourceInformationSet.get -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatform.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture? +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatform.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatformSet.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignMode.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignMode.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DesignModeSet.get -> bool @@ -528,7 +617,7 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableAppDomai Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelization.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelization.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DisableParallelizationSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DotnetHostPath.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DotnetHostPath.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ExecutionThreadApartmentState.get -> Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformApartmentState Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ExecutionThreadApartmentState.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.InIsolation.get -> bool @@ -536,17 +625,17 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.InIsolation.set Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCount.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCount.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.MaxCpuCountSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectory.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectory.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectory.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ResultsDirectorySet.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.RunConfiguration() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ShouldCollectSourceInformation.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ShouldCollectSourceInformation.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.SolutionDirectory.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.SolutionDirectory.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.SolutionDirectory.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetDevice.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetDevice.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetDevice.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFrameworkSet.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFrameworkVersion.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.FrameworkVersion @@ -554,10 +643,10 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetFramework Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatform.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatform.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TargetPlatformSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPaths.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPaths.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPaths.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestAdaptersPathsSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestCaseFilter.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestCaseFilter.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestSessionTimeout.get -> long Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TestSessionTimeout.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatNoTestsAsError.get -> bool @@ -566,33 +655,38 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatTestAdapte Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.TreatTestAdapterErrorsAsWarnings.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string message, System.Exception innerException) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(string? message, System.Exception? innerException) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsNameAttribute(string settingsName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsNameAttribute.SettingsNameAttribute(string! settingsName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail +Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Architecture.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture +Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Framework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework? +Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Source.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.SourceDetail() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.CodeFilePath.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.CodeFilePath.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.CodeFilePath.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.DisplayName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.DisplayName.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.DisplayName.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ExecutorUri.get -> System.Uri +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ExecutorUri.get -> System.Uri! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ExecutorUri.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.FullyQualifiedName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.FullyQualifiedName.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.FullyQualifiedName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Id.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Id.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LineNumber.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LineNumber.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LocalExtensionData.get -> object +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LocalExtensionData.get -> object? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.LocalExtensionData.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Source.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Source.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Source.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.TestCase() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.TestCase(string fullyQualifiedName, System.Uri executorUri, string source) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.TestCase(string! fullyQualifiedName, System.Uri! executorUri, string! source) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Endpoint.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Endpoint.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Endpoint.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Role.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ConnectionRole Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Role.set -> void @@ -601,18 +695,18 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Transport Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo.Transport.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.CacheLazyValuesOnSerializing(System.Runtime.Serialization.StreamingContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetProperties() -> System.Collections.Generic.IEnumerable> -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property) -> object -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T defaultValue) -> T -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T defaultValue, System.Globalization.CultureInfo culture) -> T -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.RemovePropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, object value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue value, System.Globalization.CultureInfo culture) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, T value, System.Globalization.CultureInfo culture) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetProperties() -> System.Collections.Generic.IEnumerable>! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property) -> object? +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, T? defaultValue) -> T? +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.GetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, T? defaultValue, System.Globalization.CultureInfo! culture) -> T? +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.RemovePropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, object? value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue! value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, Microsoft.VisualStudio.TestPlatform.ObjectModel.LazyPropertyValue! value, System.Globalization.CultureInfo! culture) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, T value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.SetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, T value, System.Globalization.CultureInfo! culture) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.TestObject() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.Traits.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.Traits.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Failed = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome @@ -621,40 +715,42 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Passed = 1 -> Micros Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome.Skipped = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcomeHelper Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string message, System.Exception innerException) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string? message) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPlatformException.TestPlatformException(string? message, System.Exception? innerException) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.ProcessID.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.ProcessID.set -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TargetFramework.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TargetFramework.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TestProcessAttachDebuggerPayload(int pid) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.Arguments.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.Arguments.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.Arguments.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.CustomProperties.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.CustomProperties.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.CustomProperties.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.EnvironmentVariables.get -> System.Collections.Generic.IDictionary +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.EnvironmentVariables.get -> System.Collections.Generic.IDictionary? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.EnvironmentVariables.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.FileName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.FileName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.FileName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.TestProcessStartInfo() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.WorkingDirectory.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.WorkingDirectory.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo.WorkingDirectory.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Attributes.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Attributes.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Category.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Category.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Category.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Description.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Description.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Description.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty other) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetRealObject(System.Runtime.Serialization.StreamingContext context) -> object -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetValueType() -> System.Type -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Id.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty? other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetRealObject(System.Runtime.Serialization.StreamingContext context) -> object! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetValueType() -> System.Type! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Id.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Id.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Label.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Label.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Label.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValidateValueCallback.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValueType.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValidateValueCallback.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback? +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValueType.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ValueType.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Hidden = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes @@ -662,35 +758,35 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Immutable Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.None = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes.Trait = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Attachments.get -> System.Collections.ObjectModel.Collection -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ComputerName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Attachments.get -> System.Collections.ObjectModel.Collection! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ComputerName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ComputerName.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.DisplayName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.DisplayName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.DisplayName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Duration.get -> System.TimeSpan Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Duration.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.EndTime.get -> System.DateTimeOffset Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.EndTime.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorMessage.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorMessage.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorMessage.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorStackTrace.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorStackTrace.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ErrorStackTrace.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Messages.get -> System.Collections.ObjectModel.Collection +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Messages.get -> System.Collections.ObjectModel.Collection! Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Outcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Outcome.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.StartTime.get -> System.DateTimeOffset Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.StartTime.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.TestResult(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testCase) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Category.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.TestResultMessage(string category, string text) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Text.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Category.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.TestResultMessage(string! category, string? text) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.Text.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.ConnectionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestHostConnectionInfo Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.ConnectionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.LogFile.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.LogFile.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.LogFile.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.Port.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.Port.set -> void @@ -701,26 +797,26 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.TraceLe Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo.TraceLevel.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfoExtensions Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.Name.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.TestRunSettings(string name) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.Name.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.TestRunSettings(string! name) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait -Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Name.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Name.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Name.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Trait(string name, string value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Value.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Trait(string! name, string! value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Value.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait.Value.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait trait) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(string name, string value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.AddRange(System.Collections.Generic.IEnumerable traits) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator +Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait! trait) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.Add(string! name, string! value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.AddRange(System.Collections.Generic.IEnumerable! traits) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection.GetEnumerator() -> System.Collections.Generic.IEnumerator! Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport.Sockets = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Transport Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment -Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Description.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Uri.get -> System.Uri -Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.UriDataAttachment(System.Uri uri, string description) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Description.get -> string? +Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.Uri.get -> System.Uri! +Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.UriDataAttachment(System.Uri! uri, string? description) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.EqtHash Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper @@ -731,237 +827,142 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg (forwarded, containe Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback Microsoft.VisualStudio.TestPlatform.TestSDKAutoGeneratedCode Microsoft.VisualStudio.TestPlatform.TestSDKAutoGeneratedCode.TestSDKAutoGeneratedCode() -> void -override Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.BaseTestRunCriteria.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Properties.get -> System.Collections.Generic.IEnumerable -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Equals(object? obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.GetHashCode() -> int +override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestRunStartedEventArgs.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.Properties.get -> System.Collections.Generic.IEnumerable! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Properties.get -> System.Collections.Generic.IEnumerable -override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.ToString() -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.RequestExtensions.WaitForCompletion(this Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest request) -> void +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.Properties.get -> System.Collections.Generic.IEnumerable! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.ToString() -> string! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.RequestExtensions.WaitForCompletion(this Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequest! request) -> void static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.DoNotInitailize.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.DoNotInitailize.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(System.Exception exceptionToTrace) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorAssert(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorOnInitialization.get -> string (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Error(System.Exception! exceptionToTrace) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorAssert(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorIf(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorOnInitialization.get -> string? (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorOnInitialization.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnless(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnless(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Fail(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Fail(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Info(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Info(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoIf(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoIf(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnless(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnless(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InitializeTrace(string customLogFile, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel traceLevel) -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InitializeVerboseTrace(string customLogFile) -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnless(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnless(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.ErrorUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Fail(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Fail(string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Info(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Info(string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoIf(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoIf(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnless(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnless(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InfoUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InitializeTrace(string? customLogFile, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel traceLevel) -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.InitializeVerboseTrace(string? customLogFile) -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.IsErrorEnabled.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.IsInfoEnabled.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.IsVerboseEnabled.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.IsWarningEnabled.get -> bool (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.LogFile.get -> string (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Verbose(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Verbose(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseIf(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseIf(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnless(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnless(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel level, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel level, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Warning(string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Warning(string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningIf(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningIf(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnless(bool condition, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnless(bool condition, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string format, params object[] args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.FromString(string frameworkString) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.CannotBeNullOrEmpty.get -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.Culture.get -> System.Globalization.CultureInfo -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.Culture.set -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.DisplayChosenSettings.get -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.MalformedRunSettingsFile.get -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.NoMatchingSourcesFound.get -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.SourceIncompatible.get -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.FromXml(System.Xml.XmlReader reader) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcomeHelper.GetOutcomeString(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> string +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.LogFile.get -> string? (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Verbose(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Verbose(string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseIf(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseIf(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnless(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnless(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel level, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.VerboseUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel level, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Warning(string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.Warning(string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningIf(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningIf(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnless(bool condition, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnless(bool condition, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string! format, params object?[]! args) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.WarningUnlessAlterTrace(bool condition, Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel bumpLevel, string? message) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.FromString(string? frameworkString) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.FromXml(System.Xml.XmlReader! reader) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcomeHelper.GetOutcomeString(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> string! static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.ClearRegisteredProperties() -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Find(string id) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string id, string label, string category, string description, System.Type valueType, Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback validateValueCallback, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes attributes, System.Type owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string id, string label, System.Type valueType, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes attributes, System.Type owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string id, string label, System.Type valueType, System.Type owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.TryUnregister(string id, out System.Collections.Generic.KeyValuePair> propertyTypePair) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfoExtensions.ToCommandLineOptions(this Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo connectionInfo) -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.CreateFrom(string localFilePath, string description) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetCustomAttributes(this System.Reflection.Assembly assembly, string fullyQualifiedName) -> System.Collections.Generic.IEnumerable -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.EqtHash.GuidFromString(string data) -> System.Guid -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.Escape(string str) -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.Unescape(string str) -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.StringUtilities.IsNullOrWhiteSpace(string input) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.StringUtilities.PrepareForOutput(string input) -> string -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.ReadToNextElement(this System.Xml.XmlReader reader) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.ReadToRootNode(System.Xml.XmlReader reader) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.SkipToNextElement(this System.Xml.XmlReader reader) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetLoggerRunSettings(string runSettings) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetRunConfigurationNode(string settingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetTestRunParameters(string settingsXml) -> System.Collections.Generic.Dictionary +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Find(string! id) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string! id, string! label, string! category, string! description, System.Type! valueType, Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateValueCallback? validateValueCallback, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes attributes, System.Type! owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string! id, string! label, System.Type! valueType, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestPropertyAttributes attributes, System.Type! owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.Register(string! id, string! label, System.Type! valueType, System.Type! owner) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty.TryUnregister(string! id, out System.Collections.Generic.KeyValuePair!> propertyTypePair) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfoExtensions.ToCommandLineOptions(this Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunnerConnectionInfo connectionInfo) -> string! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment.CreateFrom(string! localFilePath, string? description) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetCustomAttributes(this System.Reflection.Assembly! assembly, string! fullyQualifiedName) -> System.Collections.Generic.IEnumerable! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.EqtHash.GuidFromString(string! data) -> System.Guid +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.Escape(string! str) -> string! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.FilterHelper.Unescape(string! str) -> string! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.StringUtilities.IsNullOrWhiteSpace(string? input) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.StringUtilities.PrepareForOutput(string? input) -> string! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.ReadToNextElement(this System.Xml.XmlReader! reader) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.ReadToRootNode(System.Xml.XmlReader! reader) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlReaderUtilities.SkipToNextElement(this System.Xml.XmlReader! reader) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetLoggerRunSettings(string? runSettings) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetRunConfigurationNode(string? settingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetTestRunParameters(string? settingsXml) -> System.Collections.Generic.Dictionary! static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.OSArchitecture.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.ReaderSettings.get -> System.Xml.XmlReaderSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNegative(int arg, string parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNegative(long arg, string parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNull(T arg, string parameterName) -> T (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrEmpty(string arg, string parameterName) -> string (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrEmpty(System.Collections.Generic.IEnumerable arg, string parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrWhiteSpace(string arg, string parameterName) -> string (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.TypeOf(object arg, string parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.ReaderSettings.get -> System.Xml.XmlReaderSettings! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNegative(int arg, string! parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNegative(long arg, string! parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNull(T? arg, string! parameterName) -> T (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrEmpty(string? arg, string! parameterName) -> string! (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrEmpty(System.Collections.Generic.IEnumerable? arg, string! parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.NotNullOrWhiteSpace(string? arg, string! parameterName) -> string! (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArg.TypeOf(object? arg, string! parameterName) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultExecutionThreadApartmentState -> Microsoft.VisualStudio.TestPlatform.PlatformAbstractions.PlatformApartmentState static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultPlatform -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultProtocolConfig -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultResultsDirectory -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.CodeFilePath -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.DisplayName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.ExecutorUri -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.FullyQualifiedName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.Id -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.LineNumber -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.Source -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.AdditionalInfoCategory -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.DebugTraceCategory -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.StandardErrorCategory -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.StandardOutCategory -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ComputerName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.DisplayName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.Duration -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.EndTime -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ErrorMessage -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ErrorStackTrace -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.Outcome -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.StartTime -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants.UapAppUserModeId -> string -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants.UapPackageFullName -> string -virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.Properties.get -> System.Collections.Generic.IEnumerable -virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.ProtectedGetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, object defaultValue) -> object -virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.ProtectedSetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty property, object value) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.InvokedDataCollector(System.Uri uri, string friendlyName, string assemblyQualifiedName, string filePath, bool hasAttachmentProcessor) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector other) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.AssemblyQualifiedName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.FriendlyName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.FilePath.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.HasAttachmentProcessor.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Uri.get -> System.Uri -override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.Equals(object obj) -> bool -override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector.ToString() -> string -const Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.MinimumProtocolVersionWithCancelDiscoveryEventHandlerSupport = 6 -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.FullyDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.NotDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.PartiallyDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.DiscoveryCriteria(System.Collections.Generic.IEnumerable sources, long frequencyOfDiscoveredTestsEvent, System.TimeSpan discoveredTestEventTimeout, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria.TestSessionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload.TestSessionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStartTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs eventArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler.HandleStopTestSessionComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs eventArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.EventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StartTestSessionAckPayload.EventArgs.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.EventArgs.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionAckPayload.EventArgs.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.CollectMetrics.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.CollectMetrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.StopTestSessionPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Payloads.StopTestSessionPayload.TestSessionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.Metrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.StartTestSessionCompleteEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCompleteEventArgs.TestSessionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.IsStopped.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.IsStopped.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.Metrics.get -> System.Collections.Generic.IDictionary -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.Metrics.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.StopTestSessionCompleteEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.StopTestSessionCompleteEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StopTestSessionCompleteEventArgs.TestSessionInfo.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary> -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveredExtensions.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.DiscoveryCompleteEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.DiscoveredExtensions.get -> System.Collections.Generic.Dictionary> -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs.DiscoveredExtensions.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.IsAborted.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.TotalCount.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail -Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Architecture.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture -Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Framework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework -Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.Source.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.SourceDetail.SourceDetail() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.AttachDebuggerInfo() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.ProcessId.get -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.ProcessId.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.TargetFramework.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.TargetFramework.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher3 -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo attachDebuggerInfo) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.HandleTestRunComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs testRunCompleteArgs, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs lastChunkArgs, System.Collections.Generic.ICollection runContextAttachments, System.Collections.Generic.ICollection executorUris) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.HandleTestRunStatsChange(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs testRunChangedArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IInternalTestRunEventsHandler.LaunchProcessWithDebuggerAttached(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo testProcessStartInfo) -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher3.AttachDebuggerToProcess(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo attachDebuggerInfo, System.Threading.CancellationToken cancellationToken) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.EditorAttachDebuggerPayload() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.ProcessID.get -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.ProcessID.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.TargetFramework.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.TargetFramework.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TargetFramework.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload.TargetFramework.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.SkippedDiscoveredSources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateDiscoveryRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria discoveryCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, System.Collections.Generic.Dictionary sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger warningLogger) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IDiscoveryRequest -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.CreateTestRunRequest(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria testRunCriteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, System.Collections.Generic.Dictionary sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger warningLogger) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunRequest -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestPlatform.StartTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IRequestData requestData, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.StartTestSessionCriteria criteria, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, System.Collections.Generic.Dictionary sourceToSourceDetailMap, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger warningLogger) -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.IWarningLogger.LogWarning(string message) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.FullyDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.NotDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.PartiallyDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs.SkippedDiscoveredSources.get -> System.Collections.Generic.IList -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatform.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Architecture? -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatform.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.DefaultPlatformSet.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.Sources.get -> System.Collections.Generic.ICollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.AttachDebuggerInfo.Sources.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.Sources.get -> System.Collections.Generic.ICollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload.Sources.set -> void +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultProtocolConfig -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ProtocolConfig! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.Constants.DefaultResultsDirectory -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.CodeFilePath -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.DisplayName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.ExecutorUri -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.FullyQualifiedName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.Id -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.LineNumber -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCaseProperties.Source -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.AdditionalInfoCategory -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.DebugTraceCategory -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.StandardErrorCategory -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage.StandardOutCategory -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ComputerName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.DisplayName -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.Duration -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.EndTime -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ErrorMessage -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.ErrorStackTrace -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.Outcome -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultProperties.StartTime -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants.UapAppUserModeId -> string! +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.UapConstants.UapPackageFullName -> string! +virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.Properties.get -> System.Collections.Generic.IEnumerable! +virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.ProtectedGetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, object? defaultValue) -> object? +virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject.ProtectedSetPropertyValue(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty! property, object? value) -> void +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.CannotBeNullOrEmpty.get -> string +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.Culture.get -> System.Globalization.CultureInfo +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.Culture.set -> void +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.DisplayChosenSettings.get -> string +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.MalformedRunSettingsFile.get -> string +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.NoMatchingSourcesFound.get -> string +~static Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources.SourceIncompatible.get -> string diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Shipped.txt index 7929196a23..ff1e98e873 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Shipped.txt @@ -1,112 +1,113 @@ -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.FileName.get -> string +#nullable enable +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.FileName.get -> string! abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.PerformCleanup.get -> bool -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionEnd -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionStart -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseEnd -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseStart -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestHostLaunched -> System.EventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text) -> void -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text, System.Exception exception) -> void -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogWarning(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string text) -> void -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation fileTransferInformation) -> void -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileCompleted -> System.ComponentModel.AsyncCompletedEventHandler -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Initialize(System.Xml.XmlElement configurationElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents events, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink dataSink, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext environmentContext) -> void -abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.ToXml() -> System.Xml.XmlElement +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionEnd -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.SessionStart -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseEnd -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestCaseStart -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.TestHostLaunched -> System.EventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! text) -> void +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! text, System.Exception! exception) -> void +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogWarning(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! text) -> void +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation! fileTransferInformation) -> void +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileCompleted -> System.ComponentModel.AsyncCompletedEventHandler? +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Initialize(System.Xml.XmlElement? configurationElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents! events, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink! dataSink, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger! logger, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext? environmentContext) -> void +abstract Microsoft.VisualStudio.TestPlatform.ObjectModel.TestRunSettings.ToXml() -> System.Xml.XmlElement! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.BasicTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Description.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.BasicTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Description.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.Description.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.RequestId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.RequestId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.RequestId.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.UserToken.get -> object +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.UserToken.get -> object? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.BasicTransferInformation.UserToken.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId testExecId) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId! sessionId) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId! sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId? testExecId) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId! sessionId, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.DataCollectionContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase? testCase) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.HasTestCase.get -> bool -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.SessionId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestExecId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.SessionId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.TestExecId.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.DataCollectionEnvironmentContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext sessionDataCollectionContext) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.SessionDataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.DataCollectionEnvironmentContext(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! sessionDataCollectionContext) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.SessionDataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.Context.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.DataCollectionEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.DataCollectionEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEventArgs.DataCollectionEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEvents.DataCollectionEvents() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.DataCollectionLogger() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Exception exception) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogError(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, System.Exception! exception) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.DataCollectionSink() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, string description, bool deleteFile) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! path, bool deleteFile) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionSink.SendFileAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! path, string! description, bool deleteFile) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.DataCollector() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Dispose() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.DataCollectorFriendlyNameAttribute(string friendlyName) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.FriendlyName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.DataCollectorFriendlyNameAttribute(string! friendlyName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorFriendlyNameAttribute.FriendlyName.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Data = 3 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Error = 0 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Info = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel.Warning = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.DataCollectorTypeUriAttribute(string typeUri) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.TypeUri.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.DataCollectorTypeUriAttribute(string! typeUri) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorTypeUriAttribute.TypeUri.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, string path, bool deleteFile, Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces.IFileHelper fileHelper) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.Path.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! path, bool deleteFile) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileTransferInformation(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, string! path, bool deleteFile, Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces.IFileHelper! fileHelper) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.Path.get -> string! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink.SendData(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext dataCollectionContext, string key, string value) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink.SendData(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! dataCollectionContext, string! key, string! value) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.GetExtensionUris() -> System.Collections.Generic.IEnumerable -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.ProcessAttachmentSetsAsync(System.Xml.XmlElement configurationElement, System.Collections.Generic.ICollection attachments, System.IProgress progressReporter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger logger, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task> +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.GetExtensionUris() -> System.Collections.Generic.IEnumerable? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.ProcessAttachmentSetsAsync(System.Xml.XmlElement! configurationElement, System.Collections.Generic.ICollection! attachments, System.IProgress! progressReporter, Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.IMessageLogger! logger, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task!>! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachmentProcessor.SupportsIncrementalProcessing.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.GetExtensionUri() -> System.Uri -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.HandleDataCollectionAttachmentSets(System.Collections.Generic.ICollection dataCollectionAttachments) -> System.Collections.Generic.ICollection +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.GetExtensionUri() -> System.Uri! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectorAttachments.HandleDataCollectionAttachmentSets(System.Collections.Generic.ICollection! dataCollectionAttachments) -> System.Collections.Generic.ICollection! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.ITestExecutionEnvironmentSpecifier -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.ITestExecutionEnvironmentSpecifier.GetTestExecutionEnvironmentVariables() -> System.Collections.Generic.IEnumerable> +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.ITestExecutionEnvironmentSpecifier.GetTestExecutionEnvironmentVariables() -> System.Collections.Generic.IEnumerable>! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId other) -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(object obj) -> int -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId other) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? other) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.CompareTo(object? obj) -> int +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? other) -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Id.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs.SessionEndEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs.SessionEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionEndEventArgs.SessionEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Id.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.SessionId() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.SessionId(System.Guid id) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetProperties() -> System.Collections.Generic.IEnumerator> -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue(string property) -> object -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue(string property) -> T +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetProperties() -> System.Collections.Generic.IEnumerator>! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue(string! property) -> object? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.GetPropertyValue(string! property) -> T? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Collections.Generic.IDictionary properties) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(System.Collections.Generic.IDictionary properties) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, System.Collections.Generic.IDictionary! properties) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionStartEventArgs.SessionStartEventArgs(System.Collections.Generic.IDictionary! properties) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestCaseEndEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testElement, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome testOutcome) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEndEventArgs.TestOutcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.IsChildTestCase.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Guid testCaseId, string testCaseName, bool isChildTestCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testElement) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, System.Guid testCaseId, string? testCaseName, bool isChildTestCase) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseId.get -> System.Guid -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseName.get -> string -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestElement.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestCaseName.get -> string! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseEventArgs.TestElement.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.Assertion = 1 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.MissingException = 4 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType @@ -116,131 +117,131 @@ Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureTy Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType.UnhandledException = 2 -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseFailureType Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testElement) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testElement) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestCaseStartEventArgs.TestCaseStartEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase! testElement) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Id.get -> System.Guid Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.TestExecId() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.TestExecId(System.Guid id) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs.TestHostLaunchedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, int processId) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs.TestHostLaunchedEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, int processId) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestHostLaunchedEventArgs.TestHostProcessId.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResult.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResult.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! testResult) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestResultEventArgs.TestResultEventArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult! testResult) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectionRunSettings() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectionRunSettings(string dataCollectionRootName, string dataCollectionsName, string dataCollectorName) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectorSettingsList.get -> System.Collections.ObjectModel.Collection +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectionRunSettings(string! dataCollectionRootName, string! dataCollectionsName, string! dataCollectorName) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.DataCollectorSettingsList.get -> System.Collections.ObjectModel.Collection! Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.IsCollectionEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.InProcDataCollectionArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.DataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.TestCaseEndArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext dataCollectionContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.DataCollectionContext.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.TestCaseEndArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! dataCollectionContext, Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome outcome) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs.TestOutcome.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestOutcome Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCaseStartArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase testCase) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCase.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs.TestCaseStartArgs(Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase? testCase) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs.TestSessionEndArgs() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.Configuration.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.Configuration.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.Configuration.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetProperties() -> System.Collections.Generic.IEnumerator> -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue(string property) -> object -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue(string property) -> T +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetProperties() -> System.Collections.Generic.IEnumerator>! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue(string! property) -> object? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.GetPropertyValue(string! property) -> T? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(string configuration) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(System.Collections.Generic.IDictionary properties) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(string! configuration) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs.TestSessionStartArgs(System.Collections.Generic.IDictionary! properties) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.AssemblyQualifiedName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.AssemblyQualifiedName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.AssemblyQualifiedName.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.CodeBase.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.CodeBase.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.CodeBase.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Configuration.get -> System.Xml.XmlElement +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Configuration.get -> System.Xml.XmlElement? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Configuration.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.DataCollectorSettings() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.FriendlyName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.FriendlyName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.FriendlyName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.IsEnabled.get -> bool Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.IsEnabled.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml() -> System.Xml.XmlElement -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml(string dataCollectorName) -> System.Xml.XmlElement -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Uri.get -> System.Uri +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml() -> System.Xml.XmlElement! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.ToXml(string! dataCollectorName) -> System.Xml.XmlElement! +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Uri.get -> System.Uri? Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings.Uri.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.DiaNavigationData(string fileName, int minLineNumber, int maxLineNumber) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.FileName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.DiaNavigationData(string? fileName, int minLineNumber, int maxLineNumber) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.FileName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.FileName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MaxLineNumber.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MaxLineNumber.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MinLineNumber.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData.MinLineNumber.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string binaryPath) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string binaryPath, string searchPath) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string! binaryPath) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.DiaSession(string! binaryPath, string? searchPath) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.Dispose() -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationData(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData -Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationDataForMethod(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationData(string! declaringTypeName, string! methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaNavigationData? +Microsoft.VisualStudio.TestPlatform.ObjectModel.DiaSession.GetNavigationDataForMethod(string! declaringTypeName, string! methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData? Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection -Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink dataCollectionSink) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs testCaseEndArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs testCaseStartArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs testSessionEndArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs testSessionStartArgs) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Configuration.get -> System.Xml.XmlElement +Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.Initialize(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.IDataCollectionSink! dataCollectionSink) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseEndArgs! testCaseEndArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestCaseStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestCaseStartArgs! testCaseStartArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionEnd(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionEndArgs! testSessionEndArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.InProcDataCollector.InProcDataCollection.TestSessionStart(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollector.InProcDataCollector.TestSessionStartArgs! testSessionStartArgs) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Configuration.get -> System.Xml.XmlElement? Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.Configuration.set -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml() -> System.Xml.XmlElement -Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml(string loggerName) -> System.Xml.XmlElement +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml() -> System.Xml.XmlElement! +Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerSettings.ToXml(string! loggerName) -> System.Xml.XmlElement! Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData -Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.FileName.get -> string +Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.FileName.get -> string? Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.FileName.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MaxLineNumber.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MaxLineNumber.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MinLineNumber.get -> int Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData.MinLineNumber.set -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationSession -Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationSession.GetNavigationDataForMethod(string declaringTypeName, string methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.Equals(object obj) -> bool +Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationSession.GetNavigationDataForMethod(string! declaringTypeName, string! methodName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Navigation.INavigationData? +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileName.get -> string +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.FileName.get -> string! override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.FileTransferInformation.PerformCleanup.get -> bool -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Equals(object obj) -> bool +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Equals(object? obj) -> bool override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.GetHashCode() -> int -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.ToString() -> string -override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.ToXml() -> System.Xml.XmlElement -override Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.ToXml() -> System.Xml.XmlElement -override Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ToXml() -> System.Xml.XmlElement -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context2) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context2) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment() -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext sessionDataCollectionContext) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId right) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId right) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.CreateDataCollectionRunSettings(System.Xml.XmlReader reader, string dataCollectionName, string dataCollectorsName, string dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader reader) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader reader, string dataCollectionName, string dataCollectorsName, string dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.ContainsDataCollector(System.Xml.XPath.IXPathNavigable runSettingDocument, string dataCollectorUri) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.CreateDefaultRunSettings() -> System.Xml.XmlDocument -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetDataCollectionRunSettings(string runSettingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetDataCollectorsFriendlyName(string runsettingsXml) -> System.Collections.Generic.IList -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetInProcDataCollectionRunSettings(string runSettingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.InsertDataCollectorsNode(System.Xml.XPath.IXPathNavigable runSettingDocument, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings settings) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.IsDataCollectionEnabled(string runSettingsXml) -> bool -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.IsInProcDataCollectionEnabled(string runSettingsXml) -> bool -static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Empty -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId -virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogException(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext context, System.Exception ex, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel level) -> void +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.ToString() -> string! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.ToXml() -> System.Xml.XmlElement! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.LoggerRunSettings.ToXml() -> System.Xml.XmlElement! +override Microsoft.VisualStudio.TestPlatform.ObjectModel.RunConfiguration.ToXml() -> System.Xml.XmlElement! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext? context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext? context2) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext? context1, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext? context2) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment() -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext.CreateForLocalEnvironment(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! sessionDataCollectionContext) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionEnvironmentContext! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator !=(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? right) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.operator ==(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? left, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId? right) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.SessionId! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId.Empty.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.TestExecId! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.CreateDataCollectionRunSettings(System.Xml.XmlReader! reader, string! dataCollectionName, string! dataCollectorsName, string! dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader! reader) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings.FromXml(System.Xml.XmlReader! reader, string! dataCollectionName, string! dataCollectorsName, string! dataCollectorName) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.ContainsDataCollector(System.Xml.XPath.IXPathNavigable! runSettingDocument, string! dataCollectorUri) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.CreateDefaultRunSettings() -> System.Xml.XmlDocument! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetDataCollectionRunSettings(string? runSettingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetDataCollectorsFriendlyName(string? runsettingsXml) -> System.Collections.Generic.IList! +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.GetInProcDataCollectionRunSettings(string? runSettingsXml) -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectionRunSettings? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.InsertDataCollectorsNode(System.Xml.XPath.IXPathNavigable! runSettingDocument, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollectorSettings! settings) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.IsDataCollectionEnabled(string? runSettingsXml) -> bool +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.XmlRunSettingsUtilities.IsInProcDataCollectionEnabled(string? runSettingsXml) -> bool +static readonly Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId.Empty -> Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.RequestId! +virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionLogger.LogException(Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectionContext! context, System.Exception! ex, Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorMessageLevel level) -> void virtual Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollector.Dispose(bool disposing) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorAttachmentProcessorAttribute -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorAttachmentProcessorAttribute.DataCollectorAttachmentProcessorAttribute(System.Type type) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorAttachmentProcessorAttribute.Type.get -> System.Type \ No newline at end of file +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorAttachmentProcessorAttribute.DataCollectorAttachmentProcessorAttribute(System.Type! type) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection.DataCollectorAttachmentProcessorAttribute.Type.get -> System.Type! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Shipped.txt index ae8e28ce42..4019bb762c 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Shipped.txt @@ -1,15 +1,17 @@ -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +#nullable enable +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage.Dispose() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage.SuspendCodeCoverage() -> void -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener listener) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain childDomain) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener? listener) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain? childDomain) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> System.Diagnostics.TraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.DoesReferencesAssembly(string source, System.Reflection.AssemblyName referenceAssembly) -> bool? -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetFrameworkVersionAndArchitectureForSource(string testSource) -> System.Collections.Generic.KeyValuePair -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetReferencedAssemblies(string source) -> string[] -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.SetAppDomainFrameworkVersionBasedOnTestSource(System.AppDomainSetup setup, string testSource) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.DoesReferencesAssembly(string! source, System.Reflection.AssemblyName! referenceAssembly) -> bool? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetFrameworkVersionAndArchitectureForSource(string! testSource) -> System.Collections.Generic.KeyValuePair +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetReferencedAssemblies(string! source) -> string![]? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.SetAppDomainFrameworkVersionBasedOnTestSource(System.AppDomainSetup! setup, string! testSource) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net45/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Shipped.txt index ae8e28ce42..4019bb762c 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Shipped.txt @@ -1,15 +1,17 @@ -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void +#nullable enable +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestCanceledException.TestCanceledException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.TestPlatformFormatException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +Microsoft.VisualStudio.TestPlatform.ObjectModel.SettingsException.SettingsException(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage.Dispose() -> void Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.SuspendCodeCoverage.SuspendCodeCoverage() -> void -override Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) -> void -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener listener) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain childDomain) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +override Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter.TestPlatformFormatException.GetObjectData(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupListener(System.Diagnostics.TraceListener? listener) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.SetupRemoteEqtTraceListeners(System.AppDomain? childDomain) -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> System.Diagnostics.TraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.DoesReferencesAssembly(string source, System.Reflection.AssemblyName referenceAssembly) -> bool? -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetFrameworkVersionAndArchitectureForSource(string testSource) -> System.Collections.Generic.KeyValuePair -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetReferencedAssemblies(string source) -> string[] -static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.SetAppDomainFrameworkVersionBasedOnTestSource(System.AppDomainSetup setup, string testSource) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.DoesReferencesAssembly(string! source, System.Reflection.AssemblyName! referenceAssembly) -> bool? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetFrameworkVersionAndArchitectureForSource(string! testSource) -> System.Collections.Generic.KeyValuePair +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.GetReferencedAssemblies(string! source) -> string![]? +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Utilities.AssemblyHelper.SetAppDomainFrameworkVersionBasedOnTestSource(System.AppDomainSetup! setup, string! testSource) -> void +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/net451/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Shipped.txt index 79675341e6..845987ee16 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Shipped.txt @@ -1,2 +1,4 @@ +#nullable enable static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp1.0/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Shipped.txt index 5f618267fc..2ceb9ba877 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Shipped.txt @@ -1,2 +1,4 @@ -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +#nullable enable +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netcoreapp2.1/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Shipped.txt index 5f618267fc..b341758184 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Shipped.txt @@ -1,2 +1,4 @@ -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +#nullable enable +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework? diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.0/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt index 5f618267fc..2ceb9ba877 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Shipped.txt @@ -1,2 +1,4 @@ -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +#nullable enable +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard1.3/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index 5f618267fc..2ceb9ba877 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -1,2 +1,4 @@ -static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +#nullable enable +static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.PlatformTraceLevel (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) static Microsoft.VisualStudio.TestPlatform.ObjectModel.EqtTrace.TraceLevel.set -> void (forwarded, contained in Microsoft.TestPlatform.CoreUtilities) +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Shipped.txt index e02abfc9b0..6562cba370 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Shipped.txt @@ -1 +1,2 @@ - +#nullable enable +static Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework.DefaultFramework.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Framework! diff --git a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Unshipped.txt index 5f282702bb..ab058de62d 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.ObjectModel/PublicAPI/uap10.0/PublicAPI.Unshipped.txt @@ -1 +1 @@ - \ No newline at end of file +#nullable enable diff --git a/src/Microsoft.TestPlatform.ObjectModel/RunSettings/RunConfiguration.cs b/src/Microsoft.TestPlatform.ObjectModel/RunSettings/RunConfiguration.cs index 15b05ead7c..72c2210597 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/RunSettings/RunConfiguration.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/RunSettings/RunConfiguration.cs @@ -804,15 +804,10 @@ public static RunConfiguration FromXml(XmlReader reader) case "TestAdapterLoadingStrategy": XmlRunSettingsUtilities.ThrowOnHasAttributes(reader); value = reader.ReadElementContentAsString(); - if (Enum.TryParse(value, out var loadingStrategy)) - { - runConfiguration.TestAdapterLoadingStrategy = loadingStrategy; - } - else - { - throw new SettingsException(string.Format(CultureInfo.CurrentCulture, + runConfiguration.TestAdapterLoadingStrategy = Enum.TryParse(value, out var loadingStrategy) + ? loadingStrategy + : throw new SettingsException(string.Format(CultureInfo.CurrentCulture, Resources.Resources.InvalidSettingsIncorrectValue, Constants.RunConfigurationSettingsName, value, elementName)); - } break; diff --git a/src/Microsoft.TestPlatform.ObjectModel/Utilities/AssemblyHelper.cs b/src/Microsoft.TestPlatform.ObjectModel/Utilities/AssemblyHelper.cs index 935aa04816..c4c92cf7b2 100644 --- a/src/Microsoft.TestPlatform.ObjectModel/Utilities/AssemblyHelper.cs +++ b/src/Microsoft.TestPlatform.ObjectModel/Utilities/AssemblyHelper.cs @@ -154,7 +154,7 @@ public static KeyValuePair GetFrameworkVersionAn /// Full path to the assembly to get dependencies for. public static string[]? GetReferencedAssemblies(string source) { - TPDebug.Assert(!StringUtils.IsNullOrEmpty(source)); + TPDebug.Assert(!source.IsNullOrEmpty()); var setupInfo = new AppDomainSetup(); setupInfo.ApplicationBase = Path.GetDirectoryName(Path.GetFullPath(source)); @@ -228,7 +228,7 @@ public static void SetAppDomainFrameworkVersionBasedOnTestSource(AppDomainSetup /// String representation of the target dot net framework e.g. .NETFramework,Version=v4.0 internal static string GetTargetFrameworkVersionString(string path) { - TPDebug.Assert(!StringUtils.IsNullOrEmpty(path)); + TPDebug.Assert(!path.IsNullOrEmpty()); var setupInfo = new AppDomainSetup(); setupInfo.ApplicationBase = Path.GetDirectoryName(Path.GetFullPath(path)); diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Shipped.txt index 6f9fba12e9..36f6f2d000 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Shipped.txt @@ -1,211 +1,212 @@ +#nullable enable Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.ConsoleParameters() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.ConsoleParameters(Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces.IFileHelper fileHelper) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.LogFilePath.get -> string +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.ConsoleParameters(Microsoft.VisualStudio.TestPlatform.Utilities.Helpers.Interfaces.IFileHelper! fileHelper) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.EnvironmentVariables.get -> System.Collections.Generic.Dictionary! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.EnvironmentVariables.set -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.InheritEnvironmentVariables.get -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.InheritEnvironmentVariables.set -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.LogFilePath.get -> string? Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.LogFilePath.set -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.TraceLevel.get -> System.Diagnostics.TraceLevel Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.TraceLevel.set -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.DiscoveryEventsHandleConverter(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler testDiscoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleDiscoveredTests(System.Collections.Generic.IEnumerable discoveredTestCases) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable lastChunk) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string message) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleRawMessage(string rawMessage) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.DiscoveryEventsHandleConverter(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! testDiscoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleDiscoveredTests(System.Collections.Generic.IEnumerable? discoveredTestCases) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleDiscoveryComplete(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCompleteEventArgs! discoveryCompleteEventArgs, System.Collections.Generic.IEnumerable? lastChunk) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleLogMessage(Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging.TestMessageLevel level, string? message) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.DiscoveryEventsHandleConverter.HandleRawMessage(string! rawMessage) -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.AbortTestRun() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.CancelDiscovery() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.CancelTestRun() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.EndSession() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.InitializeExtensions(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.InitializeExtensions(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartSession() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! testHostLauncher) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.AbortTestRun() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.CancelDiscovery() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.CancelTestRun() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.EndSession() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.InitializeExtensionsAsync(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable attachments, string processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler eventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable attachments, System.Collections.Generic.IEnumerable invokedDataCollectors, string processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler eventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartSessionAsync() -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.InitializeExtensionsAsync(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable! attachments, string? processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler! eventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable! attachments, System.Collections.Generic.IEnumerable? invokedDataCollectors, string? processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler! eventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartSessionAsync() -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! testHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.AbortTestRun() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.CancelDiscovery() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.CancelTestRun() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.Dispose() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTests(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSession() -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync() -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.TestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper consoleWrapper) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync() -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.TestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo! testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper! consoleWrapper) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.~TestSession() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TransationLayerException -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TransationLayerException.TransationLayerException(string message) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TransationLayerException.TransationLayerException(string message, System.Exception innerException) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TransationLayerException.TransationLayerException(string? message) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TransationLayerException.TransationLayerException(string? message, System.Exception? innerException) -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.AbortTestRun() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.CancelDiscovery() -> void Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.CancelTestRun() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string? discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.EndSession() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.InitializeExtensions(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.InitializeExtensionsAsync(System.Collections.Generic.IEnumerable pathToAdditionalExtensions) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable attachments, string processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler testSessionEventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable attachments, System.Collections.Generic.IEnumerable invokedDataCollectors, string processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler testSessionEventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.InitializeExtensions(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.InitializeExtensionsAsync(System.Collections.Generic.IEnumerable! pathToAdditionalExtensions) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable! attachments, string? processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler! testSessionEventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.ProcessTestRunAttachmentsAsync(System.Collections.Generic.IEnumerable! attachments, System.Collections.Generic.IEnumerable? invokedDataCollectors, string? processingSettings, bool isLastBatch, bool collectMetrics, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunAttachmentsProcessingEventsHandler! testSessionEventsHandler, System.Threading.CancellationToken cancellationToken) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTests(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartSession() -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartSessionAsync() -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher testHostLauncher) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.VsTestConsoleWrapper(string vstestConsolePath) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.VsTestConsoleWrapper(string vstestConsolePath, Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters consoleParameters) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartSessionAsync() -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSession(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession? +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StartTestSessionAsync(System.Collections.Generic.IList! sources, string? runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? testHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.VsTestConsoleWrapper(string! vstestConsolePath) -> void +Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.VsTestConsoleWrapper(string! vstestConsolePath, Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters! consoleParameters) -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.AbortTestRun() -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.CancelDiscovery() -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.CancelTestRun() -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.DiscoverTests(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.DiscoverTests(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTests(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.RunTestsWithCustomTestHost(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.StopTestSession() -> bool -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> bool +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.TestSessionInfo.get -> Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.AbortTestRun() -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.CancelDiscovery() -> void Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.CancelTestRun() -> void -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable sources, string discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2 discoveryEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable testCases, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable sources, string runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher customTestHostLauncher) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync() -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.DiscoverTestsAsync(System.Collections.Generic.IEnumerable! sources, string! discoverySettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestDiscoveryEventsHandler2! discoveryEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! testCases, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.RunTestsWithCustomTestHostAsync(System.Collections.Generic.IEnumerable! sources, string! runSettings, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunEventsHandler! testRunEventsHandler, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher! customTestHostLauncher) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync() -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! +Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions! options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler! eventsHandler) -> System.Threading.Tasks.Task! Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedStartTestSession.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedStopTestSession.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestRunAttachmentsProcessing.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestsDiscovery.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestsRun.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.Culture.get -> System.Globalization.CultureInfo -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.Culture.set -> void -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.FailedToReceiveMessage.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.InvalidFilePath.get -> string -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.ResourceManager.get -> System.Resources.ResourceManager -static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.VsTestProcessExitedAbnormally.get -> string virtual Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.Dispose(bool disposing) -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.EnvironmentVariables.get -> System.Collections.Generic.Dictionary -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.EnvironmentVariables.set -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.InheritEnvironmentVariables.get -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.ConsoleParameters.InheritEnvironmentVariables.set -> void -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.IVsTestConsoleWrapperAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.TestSession.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.TestPlatform.VsTestConsole.TranslationLayer.VsTestConsoleWrapper.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo testSessionInfo, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSession.StopTestSession(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> bool -Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Interfaces.ITestSessionAsync.StopTestSessionAsync(Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions options, Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestSessionEventsHandler eventsHandler) -> System.Threading.Tasks.Task +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedStartTestSession.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedStopTestSession.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestRunAttachmentsProcessing.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestsDiscovery.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.AbortedTestsRun.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.Culture.get -> System.Globalization.CultureInfo +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.Culture.set -> void +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.FailedToReceiveMessage.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.InvalidFilePath.get -> string +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.ResourceManager.get -> System.Resources.ResourceManager +~static Microsoft.VisualStudio.TestPlatform.VsTestConsole.TranslationLayer.Resources.Resources.VsTestProcessExitedAbnormally.get -> string diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net451/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/net6.0/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Shipped.txt @@ -0,0 +1 @@ +#nullable enable diff --git a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt index e69de29bb2..7dc5c58110 100644 --- a/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt +++ b/src/Microsoft.TestPlatform.VsTestConsole.TranslationLayer/PublicAPI/netstandard2.0/PublicAPI.Unshipped.txt @@ -0,0 +1 @@ +#nullable enable