6 references to TestNormalizeStatement
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (6)
Syntax\SyntaxNormalizerTests.vb (6)
506TestNormalizeStatement("a", "a") 509TestNormalizeStatement("if a then b", "if a then b") 510TestNormalizeStatement("if a then b else c", "if a then b else c") 511TestNormalizeStatement("if a then b else if c then d else e", "if a then b else if c then d else e") 512TestNormalizeStatement("if a then b else if c then d else e", "if a then b else if c then d else e") 521TestNormalizeStatement("if a then:b:end if", "if a then : b : end if")