forked from microsoft/vstest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a ToolTask based VSTestTask that integrates nicely in the MSBu…
…ild infrastructure (microsoft#680) This new task will be used by default during the build. If the $(VSTestUseConsole) property is set to True, the old console forwarding VSTestForwardTask will be used instead.
- Loading branch information
Showing
8 changed files
with
542 additions
and
262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
using Microsoft.Build.Framework; | ||
using Microsoft.Build.Utilities; | ||
|
||
namespace Microsoft.TestPlatform.Build.Tasks; | ||
|
||
internal interface ITestTask : ITask, ICancelableTask | ||
{ | ||
|
||
ITaskItem? TestFileFullPath { get; set; } | ||
string? VSTestSetting { get; set; } | ||
ITaskItem[]? VSTestTestAdapterPath { get; set; } | ||
string? VSTestFramework { get; set; } | ||
string? VSTestPlatform { get; set; } | ||
string? VSTestTestCaseFilter { get; set; } | ||
string[]? VSTestLogger { get; set; } | ||
bool VSTestListTests { get; set; } | ||
string? VSTestDiag { get; set; } | ||
string[]? VSTestCLIRunSettings { get; set; } | ||
ITaskItem? VSTestConsolePath { get; set; } | ||
ITaskItem? VSTestResultsDirectory { get; set; } | ||
string? VSTestVerbosity { get; set; } | ||
string[]? VSTestCollect { get; set; } | ||
bool VSTestBlame { get; set; } | ||
bool VSTestBlameCrash { get; set; } | ||
string? VSTestBlameCrashDumpType { get; set; } | ||
bool VSTestBlameCrashCollectAlways { get; set; } | ||
bool VSTestBlameHang { get; set; } | ||
string? VSTestBlameHangDumpType { get; set; } | ||
string? VSTestBlameHangTimeout { get; set; } | ||
ITaskItem? VSTestTraceDataCollectorDirectoryPath { get; set; } | ||
bool VSTestNoLogo { get; set; } | ||
string? VSTestArtifactsProcessingMode { get; set; } | ||
string? VSTestSessionCorrelationId { get; set; } | ||
|
||
TaskLoggingHelper Log { get; } | ||
} |
Oops, something went wrong.