" Blah{$goo}blah\n" +
"{/template}\n";
SoyFileSetNode soyTree = SharedTestUtils.parseSoyFiles(testFileContent);
TemplateNode template = (TemplateNode) SharedTestUtils.getNode(soyTree);
template.addChild(new RawTextNode(0, "bleh"));
template.addChild(new RawTextNode(0, "bluh"));
assertEquals(5, template.numChildren());
(new CombineConsecutiveRawTextNodesVisitor()).exec(soyTree);