public void testAutoescapeOffWithNoAutoescape() throws Exception {
String testPrintTags = "{'<br>' |noescape}{'<br>' |noAutoescape |noAutoescape}"; // V1 & V2
Pair<SoyFileSetNode, List<PrintNode>> helperRetVal =
parseTestPrintTagsHelper(testPrintTags, false);
SoyFileSetNode soyTree = helperRetVal.first;
List<PrintNode> printNodes = helperRetVal.second;
// Before.
assertEquals(1, printNodes.get(0).getChildren().size());
assertEquals(NoAutoescapeDirective.NAME, printNodes.get(0).getChild(0).getName());