Package org.auraframework.clientlibrary

Examples of org.auraframework.clientlibrary.ClientLibraryService


     * aura:clientLibrary tag. ClientLibraryServiceImplTest is testing these ClientLibraryDef individually.
     *
     * @throws Exception
     */
    public void testCommaSeparatedStringInNameWillNotResolve() throws Exception {
        ClientLibraryService service = new ClientLibraryServiceImpl();
        ClientLibraryDef clientLibrary = vendor.makeClientLibraryDef("UIPerf, UIPerfUi", null, ClientLibraryDef.Type.JS,
                null, false, null, null);
        String url = service.getResolvedUrl(clientLibrary);
        assertNull("Expected null if a invalid library name was specified", url);
    }
View Full Code Here


    /**
     * Verify the ClientLibraryService used by Aura Standalone. It is important that ClientLibraryServiceImpl is used
     * for aura standalone.
     */
    public void testClientLibraryService() {
        ClientLibraryService cls = Aura.getClientLibraryService();
        assertTrue(cls instanceof ClientLibraryServiceImpl);
    }
View Full Code Here

TOP

Related Classes of org.auraframework.clientlibrary.ClientLibraryService

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.