10 references to CheckIsTooLong
Microsoft.CodeAnalysis.UnitTests (10)
MetadataReferences\MetadataNameLimitTests.cs (10)
20CheckIsTooLong("", 5, true);
26CheckIsTooLong("a", 5, true);
27CheckIsTooLong("abc", 5, true);
29CheckIsTooLong("abcdef", 5, false);
35CheckIsTooLong("\u070F", 5, true);
36CheckIsTooLong("\u070Fxyz", 5, true);
38CheckIsTooLong("abc\u070Fxyz", 5, false);
44CheckIsTooLong("\uFFFF", 5, true);
45CheckIsTooLong("\uFFFFyz", 5, true);
47CheckIsTooLong("abc\uFFFFxyz", 5, false);