UnifiedSettings\UnifiedSettingsTests.cs (23)
92customMaps: [new Map { Result = "neverInclude", Match = 1 }, new Map { Result = "alwaysInclude", Match = 2 }, new Map { Result = "alwaysInclude", Match = 0 }, new Map { Result = "includeAfterTypingIdentifierQuestionTab", Match = 3 }],
101customMaps: [new Map { Result = "never", Match = 1 }, new Map { Result = "never", Match = 0 }, new Map { Result = "always", Match = 2}, new Map { Result = "afterFullyTypedWord", Match = 3 }],
120customMaps: [new Map { Result = "alwaysAddImport", Match = 0 }, new Map { Result = "neverAddImport", Match = 1 }, new Map { Result = "onlyAddImportIfExplicitlyCompleted", Match = 2}],
214customMaps: [new Map { Result = "neverInclude", Match = 1 }, new Map { Result = "alwaysInclude", Match = 2 }, new Map { Result = "includeAfterTypingIdentifierQuestionTab", Match = 3 }, new Map { Result = "includeAfterTypingIdentifierQuestionTab", Match = 0 }],
223customMaps: [new Map { Result = "never", Match = 1}, new Map { Result = "always", Match = 2}, new Map { Result = "always", Match = 0}, new Map { Result = "afterFullyTypedWord", Match = 3 }],
237customMaps: [new Map { Result = "alwaysAddImport", Match = 0 }, new Map { Result = "neverAddImport", Match = 1 }, new Map { Result = "onlyAddImportIfExplicitlyCompleted", Match = 2}],
394Map = customMaps ?? [.. expectedEnumValues.Select(value => new Map { Result = value.ToString().ToCamelCase(), Match = Convert.ToInt32(value) })]