-
Notifications
You must be signed in to change notification settings - Fork 292
Closed
Labels
Area: MTPBelongs to the Microsoft.Testing.Platform core libraryBelongs to the Microsoft.Testing.Platform core libraryIn-PR
Milestone
Description
@bradwilson is not using the VSTestBridge where we capture the standard out/err using old properties from TestCase (PR #3486)
In the current TestNode properties list we don't have the counterpart for it https://github.com/microsoft/testfx/blob/main/src/Platform/Microsoft.Testing.Platform/Messages/TestNodeProperties.cs
The proposal TBD is to add
public record TextProperty(string Text)
public record TextErrorProperty(string Text)that an adapter author can use to add text information associated with a test.
I would prefer to not have in the name StdOut/Err because these properties could be used also without the console StdOut/Err. An adapter could have a different mechanism to generate this information. Let's say the idea is to have textual information.
Otherwise we should go for specific
public record ConsoleStandardOutputProperty(string Text)
public record ConsoleStandardErrorProperty(string Text)cc: @Evangelink @nohwnd
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area: MTPBelongs to the Microsoft.Testing.Platform core libraryBelongs to the Microsoft.Testing.Platform core libraryIn-PR