6 references to TestNormalizeStatement
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (6)
Syntax\SyntaxNormalizerTests.vb (6)
513TestNormalizeStatement("a", "a") 516TestNormalizeStatement("if a then b", "if a then b") 517TestNormalizeStatement("if a then b else c", "if a then b else c") 518TestNormalizeStatement("if a then b else if c then d else e", "if a then b else if c then d else e") 519TestNormalizeStatement("if a then b else if c then d else e", "if a then b else if c then d else e") 528TestNormalizeStatement("if a then:b:end if", "if a then : b : end if")