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);
assertEquals(3, template.numChildren());
assertEquals("Blah", ((RawTextNode) template.getChild(0)).getRawText());