-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Console output for minimal and quiet #2191
Merged
nohwnd
merged 33 commits into
microsoft:master
from
hvinett:ConsoleLoggerVerbosityQuietCase
Jul 22, 2020
Merged
Changes from 6 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
795d3a8
added verbosity quiest
4da1046
removed source in printing
5bda2ee
added tests
103ee9e
added tests,changed private members of summary info to local members
afeda96
naming corrected
dbd9b7e
combined two for loops to one for loop
bfb5804
removed redundant code and fomatted
c952c42
modified resources
3391a72
added target framework in quiet case
ed14b11
added yellow colour to passed and skipped
3250de1
if cases formatted
d38829e
paased failed to localized
8ab3fa2
passed and failed in unit tests changed to localized
bf38a2e
summary added to verbosity minimal case also
c16c653
attachments added to minimal and quiet verbosity case
1b77242
Merge branch 'master' into ConsoleLoggerVerbosityQuietCase
singhsarab 5075c6b
formatted
cae94bb
Merge branch 'ConsoleLoggerVerbosityQuietCase' of https://github.com/…
a742746
removed milliseconds unit when seconds unit is there
18c4022
Forward merge master
nohwnd a588684
Merge master again
nohwnd d22a535
Fix acceptance tests
nohwnd 9ba8b23
Revert build changes
nohwnd 6f3650a
Merge branch 'master' into ConsoleLoggerVerbosityQuietCase
nohwnd 61859a5
Fix test
nohwnd 75d50f2
Format output to align
nohwnd d36c66f
Fixing the output, not working adds new line
nohwnd b0ab8d4
Merge master
nohwnd 8644107
check
nohwnd 54aca6f
Minimal output
nohwnd 6ad0add
Fix test
nohwnd c4a52e4
Write when aborting
nohwnd ea8b54b
Remove empty line
nohwnd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
src/Microsoft.TestPlatform.ObjectModel/Logging/SourceSummary.cs
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,15 @@ | ||
// 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.ObjectModel.Logging | ||
{ | ||
using System; | ||
public class SourceSummary | ||
{ | ||
public int TotalTests { get; set; } | ||
public int PassedTests { get; set; } | ||
public int FailedTests { get; set; } | ||
public int SkippedTests { get; set; } | ||
public TimeSpan TimeSpan { get; set; } | ||
} | ||
} |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public class with no docs?