13 references to SupportsLanguage
Microsoft.CodeAnalysis.Workspaces.UnitTests (13)
EditorConfigParsing\SectionParserTests.cs (13)
21Assert.True(section.SupportsLanguage(language));
31Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.ExactLanguageMatchWithOthers));
40Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.AnyLanguageMatch));
50Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.SupersetFilePatternMatch));
60Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.SplatMatch));
70Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.GlobalSectionMatch));
80Assert.False(section.SupportsLanguage(language));
93Assert.False(section.SupportsLanguage(language));
104Assert.False(section.SupportsLanguage(language, matchKind: SectionMatch.ExactLanguageMatchWithOthers));
113Assert.False(section.SupportsLanguage(language, matchKind: SectionMatch.AnyLanguageMatch));
122Assert.False(section.SupportsLanguage(language, matchKind: SectionMatch.SupersetFilePatternMatch));
136Assert.True(section.SupportsLanguage(language, matchKind: SectionMatch.FilePatternMatch));
153Assert.False(section.SupportsLanguage(language, matchKind: SectionMatch.FilePatternMatch));