-
Notifications
You must be signed in to change notification settings - Fork 291
Labels
Area: MTPBelongs to the Microsoft.Testing.Platform core libraryBelongs to the Microsoft.Testing.Platform core library
Milestone
Description
In the start of Main (e.g, easiest in Playground in this repo), add the following:
args = [
"--results-directory",
"TestResults",
"""
--filter FullyQualifiedName~MyFQN
""", "--server", "dotnettestcli"];Then check the created CommandLineParseResult in CommandLineParser.Parse:
The filter is swallowed.
Then, change Main to:
args = [
"--results-directory",
"TestResults",
"""
--filter FullyQualifiedName~MyFQN
"""];The filter won't be swallowed.
- In all cases, I think we shouldn't swallow anything in our parsing.
- It's questionable if
--command-line-option valueshould really be handled when they are escaped together as a single argument.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area: MTPBelongs to the Microsoft.Testing.Platform core libraryBelongs to the Microsoft.Testing.Platform core library