Enum TestMethodDisplayOptions
- Namespace
- Xunit.Sdk
- Assembly
- xunit.v3.common.dll
Indicates the method display options for test methods.
[Flags]
public enum TestMethodDisplayOptions
Fields
All = ReplaceUnderscoreWithSpace | UseOperatorMonikers | UseEscapeSequences | ReplacePeriodWithComma
Enables all method display options.
None = 0
Indicates no additional method display options.
This is the default configuration option.
ReplacePeriodWithComma = 8
Replaces the period delimiter used in namespace and type references with a comma.
This option is only honored if the ClassAndMethod setting is also enabled.
ReplaceUnderscoreWithSpace = 1
Replace underscores in display names with a space.
UseEscapeSequences = 4
Replace supported escape sequences with their equivalent character.
Encoding Format ASCII X hex-digit hex-digit (ex: X2C) Unicode U hex-digit hex-digit hex-digit hex-digit (ex: U00A9) UseOperatorMonikers = 2
Replace well-known monikers with their equivalent operator.