9 references to GetTreeText
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (9)
InlineTemporary\InlineTemporaryTests.cs (9)
24
=> await TestInRegularAndScript1Async(
GetTreeText
(initial),
GetTreeText
(expected));
45
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x; System.Console.WriteLine(x); }"));
49
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = ; System.Console.WriteLine(x); }"));
53
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 42, [||]y; System.Console.WriteLine(y); }"));
91
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = 27; }"));
95
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int [||]x = 0, y = 1, z = 2; }"));
99
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 0, [||]y = 1, z = 2; }"));
103
=> await TestMissingInRegularAndScriptAsync(
GetTreeText
(@"{ int x = 0, y = 1, [||]z = 2; }"));