5 references to s_longPathName
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (5)
Semantics\NameLengthTests.cs (5)
573new ResourceDescription("name2", s_longPathName, dataProvider, false), //fine
575new ResourceDescription("name3", s_longPathName + 2, dataProvider, false), //path error
576new ResourceDescription(s_longSymbolName + 3, s_longPathName + 4, dataProvider, false), //name and path errors
582Diagnostic(ErrorCode.ERR_MetadataNameTooLong).WithArguments(s_longPathName + 2).WithLocation(1, 1),
586Diagnostic(ErrorCode.ERR_MetadataNameTooLong).WithArguments(s_longPathName + 4).WithLocation(1, 1));