12 references to VerifyBreakIntoCharacterParts
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (12)
Utilities\PatternMatcherTests.cs (12)
31=> VerifyBreakIntoCharacterParts("goo", "goo");
35=> VerifyBreakIntoCharacterParts("_goo", "_", "goo");
39=> VerifyBreakIntoCharacterParts("g_oo", "g", "_", "oo");
43=> VerifyBreakIntoCharacterParts("goo_", "goo", "_");
47=> VerifyBreakIntoCharacterParts("_Goo", "_", "Goo");
51=> VerifyBreakIntoCharacterParts("m_goo", "m", "_", "goo");
55=> VerifyBreakIntoCharacterParts("FogBar", "Fog", "Bar");
59=> VerifyBreakIntoCharacterParts("fogBar", "fog", "Bar");
63=> VerifyBreakIntoCharacterParts("UIElement", "U", "I", "Element");
67=> VerifyBreakIntoCharacterParts("Goo42", "Goo", "42");
71=> VerifyBreakIntoCharacterParts("Fog42Bar", "Fog", "42", "Bar");
78VerifyBreakIntoCharacterParts("42Bar", "42", "Bar");