src/main/java/org/apache/sling/launchpad/webapp/integrationtest/GeneratedNodeNameTest.java [70:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testTitleWithSavePrefix() throws IOException {
        final Map<String,String> props = new HashMap<String,String>();
        props.put("./title", "Hello There 2");
        props.put("title", "not this one");
        final String location = testClient.createNode(postUrl, props);
        final String expect = "hello_there_2";
        assertTrue("Location " + location + " ends with " + expect,location.endsWith(expect));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/sling/launchpad/webapp/integrationtest/GeneratedNodeNameTestStar.java [57:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testTitleWithSavePrefix() throws IOException {
        final Map<String,String> props = new HashMap<String,String>();
        props.put("./title", "Hello There 2");
        props.put("title", "not this one");
        final String location = testClient.createNode(postUrl, props);
        final String expect = "hello_there_2";
        assertTrue("Location " + location + " ends with " + expect,location.endsWith(expect));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



