Package org.apache.sling.commons.testing.integration

Examples of org.apache.sling.commons.testing.integration.NameValuePairList


        super.setUp();
       
        // create test node under a unique path
        final String url = HTTP_BASE_URL + "/" + getClass().getSimpleName() + "/" + System.currentTimeMillis() + SlingPostConstants.DEFAULT_CREATE_SUFFIX;
        testText = "Test text " + System.currentTimeMillis();
        final NameValuePairList list = new NameValuePairList();
        list.add("text", testText);
        displayUrl = testClient.createNode(url, list, null, true);
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.commons.testing.integration.NameValuePairList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.