13 references to VerifyBreakIntoCharacterParts
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (13)
Utilities\PatternMatcherTests.cs (13)
28=> VerifyBreakIntoCharacterParts(string.Empty, []);
32=> VerifyBreakIntoCharacterParts("goo", "goo");
36=> VerifyBreakIntoCharacterParts("_goo", "_", "goo");
40=> VerifyBreakIntoCharacterParts("g_oo", "g", "_", "oo");
44=> VerifyBreakIntoCharacterParts("goo_", "goo", "_");
48=> VerifyBreakIntoCharacterParts("_Goo", "_", "Goo");
52=> VerifyBreakIntoCharacterParts("m_goo", "m", "_", "goo");
56=> VerifyBreakIntoCharacterParts("FogBar", "Fog", "Bar");
60=> VerifyBreakIntoCharacterParts("fogBar", "fog", "Bar");
64=> VerifyBreakIntoCharacterParts("UIElement", "U", "I", "Element");
68=> VerifyBreakIntoCharacterParts("Goo42", "Goo", "42");
72=> VerifyBreakIntoCharacterParts("Fog42Bar", "Fog", "42", "Bar");
79VerifyBreakIntoCharacterParts("42Bar", "42", "Bar");