Package org.apache.sling.testing.mock.sling.loader

Examples of org.apache.sling.testing.mock.sling.loader.ContentLoader


    public void setUp() throws Exception {
        this.context = new SlingContextImpl();
        this.context.setResourceResolverType(ResourceResolverType.RESOURCERESOLVER_MOCK);
        this.context.setUp();

        ContentLoader contentLoader = this.context.load();
        contentLoader.json("/json-import-samples/content.json", "/content/sample/en");
    }
View Full Code Here


    /**
     * @return Content loader
     */
    public ContentLoader load() {
        if (this.contentLoader == null) {
            this.contentLoader = new ContentLoader(resourceResolver(), bundleContext());
        }
        return this.contentLoader;
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.testing.mock.sling.loader.ContentLoader

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.