assertEquals(7, template.numChildren());
(new RemoveHtmlCommentsVisitor()).exec(soyTree);
// After.
assertEquals(4, template.numChildren());
assertEquals("$boo", ((PrintNode) template.getChild(0)).getExprText());
assertEquals("Blah blah.", ((RawTextNode) template.getChild(1)).getRawText());
assertEquals("$boo", ((PrintNode) template.getChild(2)).getExprText());
assertEquals("$boo", ((PrintNode) template.getChild(3)).getExprText());
}