4 references to TestProperty
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Parsing\CSharpParseOptionsTests.cs (4)
44TestProperty((old, value) => old.WithKind(value), opt => opt.Kind, SourceCodeKind.Script);
45TestProperty((old, value) => old.WithLanguageVersion(value), opt => opt.LanguageVersion, LanguageVersion.CSharp3);
46TestProperty((old, value) => old.WithDocumentationMode(value), opt => opt.DocumentationMode, DocumentationMode.None);
47TestProperty((old, value) => old.WithPreprocessorSymbols(value), opt => opt.PreprocessorSymbols, ImmutableArray.Create<string>("A", "B", "C"));