src/main/java/org/apache/sling/launchpad/webapp/integrationtest/GetWithSuffixTest.java [51:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testWithExactUrl() throws IOException {
        final String toDelete = uploadTestScript("rendering-test.esp", "html.esp");
        try {
            final String content = getContent(displayUrl + ".html", CONTENT_TYPE_HTML);
            assertTrue("Content includes ESP marker", content.contains("ESP template"));
            assertTrue("Content contains formatted test text", content.contains("<p>" + testText + "</p>"));
        } finally {
            testClient.delete(toDelete);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/launchpad/webapp/integrationtest/NodetypeRenderingTest.java [140:149]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void TODO_FAILS_testVltHtml() throws IOException {
        final String toDelete = uploadTestScript("rendering-test.vlt", "html.vlt");
        try {
            final String content = getContent(displayUrl + ".html", CONTENT_TYPE_HTML);
            assertTrue("Content includes VLT marker", content.contains("Velocity template"));
            assertTrue("Content contains formatted test text", content.contains("<p><b>" + testText + "</b></p>"));
        } finally {
            testClient.delete(toDelete);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/launchpad/webapp/integrationtest/SlingResourceTypeRenderingTest.java [141:150]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void TODO_FAILS_testEspHtmlUppercase() throws IOException {
        final String toDelete = uploadTestScript("rendering-test.esp", "html.esp");
        try {
            final String content = getContent(displayUrl + ".HTML", CONTENT_TYPE_HTML);
            assertTrue("Content includes ESP marker", content.contains("ESP template"));
            assertTrue("Content contains formatted test text", content.contains("<p>" + testText + "</p>"));
        } finally {
            testClient.delete(toDelete);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



