9 references to GetTreeText
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (9)
CodeActions\InlineTemporary\InlineTemporaryTests.cs (9)
23
=> await TestInRegularAndScript1Async(
GetTreeText
(initial),
GetTreeText
(expected));
44
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x; System.Console.WriteLine(x); }"));
48
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = ; System.Console.WriteLine(x); }"));
52
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 42, [||]y; System.Console.WriteLine(y); }"));
90
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = 27; }"));
94
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = 0, y = 1, z = 2; }"));
98
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 0, [||]y = 1, z = 2; }"));
102
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 0, y = 1, [||]z = 2; }"));