-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Console output for minimal and quiet (#2191)
* added verbosity quiest * removed source in printing * added tests * added tests,changed private members of summary info to local members * naming corrected * combined two for loops to one for loop * removed redundant code and fomatted * modified resources * added target framework in quiet case * added yellow colour to passed and skipped * if cases formatted * paased failed to localized * passed and failed in unit tests changed to localized * summary added to verbosity minimal case also * attachments added to minimal and quiet verbosity case * formatted * removed milliseconds unit when seconds unit is there * Forward merge master * Fix acceptance tests * Revert build changes * Fix test * Format output to align * Fixing the output, not working adds new line * check * Minimal output * Fix test * Write when aborting * Remove empty line Co-authored-by: Sarabjot Singh <[email protected]> Co-authored-by: nohwnd <[email protected]>
- Loading branch information
1 parent
90507c6
commit 6343278
Showing
19 changed files
with
639 additions
and
79 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,38 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace Microsoft.VisualStudio.TestPlatform.CommandLine.Internal | ||
{ | ||
using System; | ||
|
||
/// <summary> | ||
/// Summary of test results per source. | ||
/// </summary> | ||
internal class SourceSummary | ||
{ | ||
/// <summary> | ||
/// Total tests of a test run. | ||
/// </summary> | ||
public int TotalTests { get; set; } | ||
|
||
/// <summary> | ||
/// Passed tests of a test run. | ||
/// </summary> | ||
public int PassedTests { get; set; } | ||
|
||
/// <summary> | ||
/// Failed tests of a test run. | ||
/// </summary> | ||
public int FailedTests { get; set; } | ||
|
||
/// <summary> | ||
/// Skipped tests of a test run. | ||
/// </summary> | ||
public int SkippedTests { get; set; } | ||
|
||
/// <summary> | ||
/// Duration of the test run. | ||
/// </summary> | ||
public TimeSpan Duration { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.